1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
function f(x) { a = 10 x = 90 print x print a a++ x++ print x } BEGIN { f(a) print a }