~vcs-imports/gawk/master

31 by Arnold D. Robbins
Move to gawk-3.1.3.
1
function f(a) {
2
	delete a
3
	a *= 5
4
}
5
6
BEGIN {
7
	f(arr)
8
}