summaryrefslogtreecommitdiff
path: root/test/strcat1.awk
blob: 0d28017cb9e7a24a31b898784ad28aee7ede796d (plain)
1
2
3
4
5
6

function f1(b) { b = b "c"; print f(b); }

function f(a) { a = a "b"; return a; }

BEGIN { A = "a"; f1(A); }