holey-bytes/hblang/examples/arithmetic.hb

4 lines
67 B
Plaintext
Raw Normal View History

2024-05-10 19:38:15 +00:00
main := ||: int {
2024-05-10 20:54:12 +00:00
return 10 - 20 / 2 + 4 * (2 + 2) - 4 * 4 + 1;
2024-05-10 19:38:15 +00:00
}