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

13 lines
288 B
Plaintext
Raw Permalink 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);
2023-10-23 17:20:37 +00:00
printBool(5 != 5);
printBool(true == true);
printBool(true && true);
printBool(true && false);
printBool(!true);
printBool(!(5 == 5));