1BEGIN {
2	j = 4
3	if ("foo" in j)
4		print "ouch"
5	else
6		print "ok"
7}
8