aboutsummaryrefslogtreecommitdiffstats
path: root/samples/sample1.code
blob: 53e05f68bd197ffca5b67addab3c651b5ba9bdf6 (plain)
1
2
3
4
5
6
7
8
9
# f a b = int.eq? a b;
# f 1 2
#     "true"
#     "false";

compare? a b fn = fn b a;
compare? 2 2 int.eq?
    "true"
    "false";