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";