(root)/
gawk-5.2.2/
test/
strcat1.awk
function f1(b) { b = b "c"; print f(b); }

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

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