aboutsummaryrefslogtreecommitdiff
path: root/testdir/t.fun4
blob: 474672b8f4e8294aebdb2c662440f3a1ef17e342 (plain)
1
2
3
4
5
6
7
8
9
function f(a, n) {
	for (i=1; i <= n; i++)
		print "	" a[i]
}

{	print
	n = split($0, x)
	f(x, n)
}