Blame test/profile3.awk

Packit 575503
BEGIN {
Packit 575503
	the_func = "p"
Packit 575503
	print @the_func("Hello")
Packit 575503
}
Packit 575503
Packit 575503
function p(str)
Packit 575503
{
Packit 575503
	print "! " str " !"
Packit 575503
}