aboutsummaryrefslogtreecommitdiffstats
path: root/test/typedregex2.awk
blob: e17df4be84b5b44adc1e9be023a082e08e25931e (plain)
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
}