blob: b654db7b41ab79bf8be054a9cf5237817522c9aa (
plain)
1
2
3
4
5
6
7
8
9
|
BEGIN {
a = 5 ; print typeof(a)
print typeof(b)
print typeof(b)
c = "foo" ; print typeof(c)
d[1] = 1 ; print typeof(d), typeof(d[1])
e = @/foo/ ; print typeof(e)
print typeof(@/bar/)
}
|