aboutsummaryrefslogtreecommitdiffstats
path: root/test/stupid5.awk
blob: e4c0187ab41f0ba1c8a26db5df3688a855f2638a (plain)
1
2
3
4
5
6
7
8
9
BEGIN {
   print typeof(x)
   f(x)
}

function f(x) {
   y = x
   print typeof(x)
}