xref: /aosp_15_r20/external/one-true-awk/testdir/t.fun2 (revision 9a7741de182b2776d7b30d6355f2585c0780a51b)
1function f(n) {
2	while (n < 10) {
3		print n
4		n = n + 1
5	}
6}
7function g(n) {
8	print "g", n
9}
10{ f($1); g($1); print n }
11