给一段简单的病毒伪代码添加注释
progame V:=
{goto main;
1234567; /子程序感染,可执行文件
subroutine infect-executable;= /感染某个程序
{loop; /定义一个值
file:=get-random-excutable-file; /随机获取文件
if(first-line-of-file=1234567) goto loop /如果第一行
compress file; /压缩文件
prepend V to file;/把V预置在随机文件之前 }
subroutine do-damage:= /如果造成损害
{whatever damage is to be done}
subroutine trigger-pulled:= /如果他被启动
{return turn if some condition holds}/返回}
}
main:main-program:= /定义main或编辑器
{
{infect-executable; /用于感染某个程序
if trigger-pulled then do-damamge; /用于破坏程序
goto next;} /执行下一步
next: uncompress rest-of-file; }