Blame test/typeof5.awk

Packit 575503
BEGIN {
Packit 575503
	print typeof($0)
Packit 575503
	print typeof($1)
Packit 575503
}
Packit 575503
Packit 575503
{
Packit 575503
	$3 = $1
Packit 575503
	print typeof($2)
Packit 575503
	print typeof($3)
Packit 575503
}