aboutsummaryrefslogtreecommitdiffstats
path: root/test/arrayind2.awk
blob: 200694eb96c2daed804fc4f1f0ca0b7e5a69df2c (plain)
1
2
3
4
5
6
7
8
BEGIN {
        pos[0] = 0
        posout[0] = 0
        split("00000779770060", f)      # f[1] is a strnum
        print typeof(f[1])
        pos[f[1]] = 1
        print typeof(f[1])
}