ubuntu-buildroot/output/build/host-gawk-5.2.0/test/paramuninitglobal.awk

16 lines
97 B
Awk

function f(x)
{
a = 10
x = 90
print x
print a
a++
x++
print x
}
BEGIN {
f(a)
print a
}