aboutsummaryrefslogtreecommitdiffstats
path: root/samples/sample1.code
blob: 6ac6847e8fb3ba614431da7f7e8e6c325df8941e (plain)
1
2
3
4
5
6
7
8
9
10
11
# 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";

int.eq? "foobar";