aboutsummaryrefslogtreecommitdiff
path: root/testdir/t.intest
blob: c1b77f29cabe5f351956c148ac5828e9f9b58ad0 (plain)
1
2
3
4
5
6
7
8
9
{
	line = substr($0, index($0, " "))
	print line
	n = split(line, x)
	if ($1 in x)
		print "yes"
	else
		print "no"
}