summaryrefslogtreecommitdiff
path: root/tests/func5.bth
blob: 70fb0eaeea1cd5ac07f1eaa56bc571d3e2cd52fe (plain)
1
2
3
4
5
6
7
8
(set! f (fn (a) (say (* a a))))
(f 2)
(f 4)
(f 6)
(f 8)
(let (a 5)
	(f a)
	(f (* 2 a)))