xref: /netbsd-src/external/historical/nawk/dist/testdir/t.intest (revision eceb233b9bd0dfebb902ed73b531ae6964fa3f9b)
1{
2	line = substr($0, index($0, " "))
3	print line
4	n = split(line, x)
5	if ($1 in x)
6		print "yes"
7	else
8		print "no"
9}
10