~vcs-imports/gawk/master

« back to all changes in this revision

Viewing changes to test/readall1.awk

Update README.solaris.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
BEGIN {
2
 
        x = 5.9
3
 
        y = 3
4
 
        z = -2.327
5
 
        guide::answer = 42
6
 
        zebra[0] = "apple"
7
 
        zebra["archie"] = "banana"
8
 
        zebra[3]["foo"] = "bar"
9
 
        zebra[3]["bar"] = "foo"
10
 
        f[1] = "alpha"
11
 
        g[1] = "beta"
12
 
        m["a"] = 1
13
 
        m["b"] = 3
14
 
        print writeall(ofile)
15
 
}