aboutsummaryrefslogtreecommitdiff
path: root/greet.ell
blob: b53f21dab9c2cd52a476a4259c27a8652dca9a6a (plain)
1
2
3
4
5
6
7
8
9
10
11
set greet {
	arg _name
	print 'hello ' @_name '\n'
}
for (map { arg _x; .. @_x ! } [
	world
	creator
]) {
	arg _whom
	greet @_whom
}