aboutsummaryrefslogtreecommitdiffstats
path: root/test/typeof1.awk
blob: 9db6448419f671893f3741946f3da69ce3d080c0 (plain)
1
2
3
4
5
6
7
8
9
BEGIN {
	a = 5 ; print typeof(a)
	print typeof(b)
#	print typeof(@/foo/)
	c = "foo" ; print typeof(c)
	d[1] = 1 ; print typeof(d), typeof(d[1])
#	e = @/foo/ ; print typeof(e)
#	print typeof(@/bar/)
}