aboutsummaryrefslogtreecommitdiffstats
path: root/test/profile3.awk
blob: e519374ef4042259472ad984d0b350733d391397 (plain)
1
2
3
4
5
6
7
8
9
BEGIN {
	the_func = "p"
	print @the_func("Hello")
}

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