(root)/
gawk-5.2.2/
test/
functab3.awk
function foo()
{
	print "foo!"
}

BEGIN {
	x = FUNCTAB["foo"]
	print "x =", x
	@x()
}