1function f(a) {
2	delete a
3	a *= 5
4}
5
6BEGIN {
7	f(arr)
8}
9