summaryrefslogtreecommitdiff
path: root/tests/func2.bth
blob: 14f07992e317e0646ca9e0f65c91ad0d793b8def (plain)
1
2
3
4
5
(set f1 (fn (a) (* a a)))
(set f2 (fn (a b) (+ a b)))
(puts (f1 6))
(puts (f2 20 40))
(f1 (f2 2 1))