~vcs-imports/gawk/master

« back to all changes in this revision

Viewing changes to test/profile17.awk

Update README.solaris.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
BEGIN {
2
 
        switch (q) {    # Comment 1
3
 
        case "a":       # Comment 2
4
 
                # comment 3
5
 
                a++
6
 
        case "b":
7
 
                # Comment 4
8
 
                break   # Comment 5
9
 
        default:        # Comment 6
10
 
                break   # Comment 7
11
 
        }               # Comment 8
12
 
 
13
 
        switch (b)      # Comment A
14
 
        {               # Comment B
15
 
        case "a":
16
 
                break;
17
 
        }
18
 
}