~vcs-imports/gawk/master

« back to all changes in this revision

Viewing changes to test/profile15.awk

Update README.solaris.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# in namespace awk
2
 
function zzzz()
3
 
{
4
 
        return "zzz"
5
 
}
6
 
 
7
 
function nnn()
8
 
{
9
 
        return "nnn"
10
 
}
11
 
 
12
 
@namespace "nnn"
13
 
function abc()
14
 
{
15
 
        return "nnn::abc"
16
 
}
17
 
 
18
 
@namespace "bbb"
19
 
 
20
 
function zzz()
21
 
{
22
 
        return "bbb::zzz"
23
 
}
24