Files
2010-07-04 22:26:35 +00:00

23 lines
258 B
Plaintext

while (var123 == 18) {
while (var321 == 42) {
var321++;
}
}
while:
pushWord 18
pushWordVar 123
eq
jumpTrue postWhile
while2:
pushWord 42
pushWordVar 321
eq
jumpTrue postWhile2
wordVarInc 321
jump while2
postWhile2:
jump while
postWhile:
stopObjectCodeA