xref: /freebsd/contrib/one-true-awk/testdir/t.intest (revision 2f7b0de1de4749e24608fc89a2db63e723c253d2)
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