aboutsummaryrefslogtreecommitdiffstats
path: root/test/profile15.awk
blob: 29fe9de2fbda30a0ebb2471db60d95e21e67ce43 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# in namespace awk
function zzzz()
{
	return "zzz"
}

function nnn()
{
	return "nnn"
}

@namespace "nnn"
function abc()
{
	return "nnn::abc"
}

@namespace "bbb"

function zzz()
{
	return "bbb::zzz"
}