1 2 3 4 5 6 7 8 9 10 11
BEGIN { x = @/xxx/ y = @/yyy/ print typeof(x), typeof(y) print x, y x++ y = y "" print typeof(x), typeof(y) print x, y }