aboutsummaryrefslogtreecommitdiffstats
path: root/test/typedregex3.awk
blob: ee6bcb69575c6f57744a8fa98cb9fe3272c5fdcf (plain)
1
2
3
4
5
6
7
8
9
10
11
BEGIN {
	a[1] = @/abc/
	b[1][2][3] = @/xyz/
	print typeof(a[1]), typeof(b[1][2][3])
	print a[1], b[1][2][3]

	a[1]++
	b[1][2][3] ""
	print typeof(a[1]), typeof(b[1][2][3])
	print a[1], b[1][2][3]
}