Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --COMMENT
- //COMMENT
- #define testif [10]
- #if (%testif% == 10)
- testif = %testif% + 1;
- #else
- testif = %testif% - 1;
- #endif
- #push %testif%
- #push "testif value: %d\n"
- #call printf
- #define testwhile [0]
- #while (%testwhile% < 10)
- testwhile = %testwhile% + 1
- #call printf "testwhile value: %d\n" %testwhile%
- #endwhile
- #define testlbl [0]
- #label "lblstart"
- #call printf "testlbl value: %d\n" %testlbl%
- testlbl = %testlbl% + 1
- #if (%testlbl% == 1)
- #goto "lblstart"
- #endif
Add Comment
Please, Sign In to add comment