1 2function f1(b) { b = b "c"; print f(b); } 3 4function f(a) { a = a "b"; return a; } 5 6BEGIN { A = "a"; f1(A); } 7