aboutsummaryrefslogtreecommitdiffstats
path: root/test/profile16.awk
blob: e0c9c42b61602c1d3c6db0b130998c2399b96ef3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
BEGIN {
	foo::foo_bar()
	foofoo::xxx()
}

@namespace "foo"

function foo_bar()
{
	print "foo::foo_bar"
}

function foofoo::xxx()
{
	print "foofoo::xxx"
}