summaryrefslogtreecommitdiff
path: root/test/concat2.awk
blob: a94b29b581a3fc221ce61ecad0dc321785d535db (plain)
1
2
3
4
5
6
7
8
function f(s, x) {
	x = 1
	s = 3
	s = s x
	print s
}

BEGIN { for (i = 1; i <=12; i++) f() }