aboutsummaryrefslogtreecommitdiff
path: root/testdir/t.intest2
blob: d9f0612737fb93c0423f9df8f9f49ec2c39679e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
	line = substr($0, index($0, " "))
	print line
	n = split(line, x)
	x[$0, $1] = $0
	print x[$0, $1]
	print "<<<"
for (i in x) print i, x[i]
	print ">>>"
	if (($0,$1) in x)
		print "yes"
	if ($1 in x)
		print "yes"
	else
		print "no"
}