(root)/
gawk-5.2.2/
test/
aryprm1.awk
function f(a) {
	if (3 in a)
		print 7
	a = 5
}

BEGIN {
	f(arr)
}