~vcs-imports/gawk/master

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)
}