v8-cpu/from_yyk/test2.txt

8 lines
79 B
Plaintext

int main()
{
int i = 5;
while(i != 10)
{
i = i + 1;
}
}