A minimalistic programming language written in C89.
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

20 lines
341 B

  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