summaryrefslogtreecommitdiff
path: root/test/functab3.awk
blob: 98fa49b158846dc431c0a74f1e97c6ffdd549707 (plain)
1
2
3
4
5
6
7
8
9
10
function foo()
{
	print "foo!"
}

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