summaryrefslogtreecommitdiff
path: root/test/typeof5.awk
blob: 30cd6aca517b39d5d923448fee510a758dde9ab5 (plain)
1
2
3
4
5
6
7
8
9
10
BEGIN {
	print typeof($0)
	print typeof($1)
}

{
	$3 = $1
	print typeof($2)
	print typeof($3)
}