aboutsummaryrefslogtreecommitdiff
path: root/testdir/t.fun2
blob: d88f69c0807dcb4811b8a9ea4c7f777fd9324261 (plain)
1
2
3
4
5
6
7
8
9
10
function f(n) {
	while (n < 10) {
		print n
		n = n + 1
	}
}
function g(n) {
	print "g", n
}
{ f($1); g($1); print n }