while-in-do-while2.txt 250 B

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