(root)/
gawk-5.2.2/
test/
profile3.awk
BEGIN {
	the_func = "p"
	print @the_func("Hello")
}

function p(str)
{
	print "! " str " !"
}