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