aboutsummaryrefslogtreecommitdiffstats
path: root/test/intarray.awk
blob: 2c30bd5f6cd81d62da3a0cacf37db807e2e3db4f (plain)
1
2
3
4
5
6
7
8
9
10
BEGIN {
	nf = split("5 |05|0x4|00| 5|-0x12| 011|-013", f, "|")
	for (i = 1; i <= nf; i++) {
		delete g
		z = f[i]+0	# trigger numeric conversion
		g[f[i]]
		for (x in g)
			printf "[%s]\n", x
	}
}