8 lines
68 B
Awk
8 lines
68 B
Awk
BEGIN {
|
|
j = 4
|
|
if ("foo" in j)
|
|
print "ouch"
|
|
else
|
|
print "ok"
|
|
}
|