This repository has been archived on 2024-04-05. You can view files and clone it, but cannot push or open issues/pull-requests.
really-bad-compiler-in-haskell/example/1.hear

8 lines
172 B
Plaintext
Raw Normal View History

printInt(5*(3-2)+-4-4);
printBool(true);
printBool(false);
2023-10-15 01:54:59 +00:00
printBool(5 * 3 >= 5 + 9);
2023-10-15 02:23:37 +00:00
printBool(5*(3-2)+-4-4 < -3);
printBool(5 == 5);
printBool(5 == 6);
printBool(5 != 5);