nested-while.txt 258 B

12345678910111213141516171819202122
  1. while (var123 == 18) {
  2. while (var321 == 42) {
  3. var321++;
  4. }
  5. }
  6. while:
  7. pushWord 18
  8. pushWordVar 123
  9. eq
  10. jumpTrue postWhile
  11. while2:
  12. pushWord 42
  13. pushWordVar 321
  14. eq
  15. jumpTrue postWhile2
  16. wordVarInc 321
  17. jump while2
  18. postWhile2:
  19. jump while
  20. postWhile:
  21. stopObjectCodeA