A minimalistic programming language written in C89.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
341 B

4 months ago
  1. fn potato do sys.trace return end
  2. fn print_n_utf8_impl do
  3. start:
  4. -1 + swap print_utf8
  5. dup start swap jump_if
  6. end
  7. fn potato2 do
  8. start:
  9. -1 + dup
  10. 65 print_utf8 10 print_utf8
  11. start swap jump_if
  12. end
  13. fn potato3 do
  14. start:
  15. -1 + dup
  16. 66 print_utf8 10 print_utf8
  17. start swap jump_if
  18. end