source: vendor/gawk/3.1.5/test/paramtyp.awk@ 3076

Last change on this file since 3076 was 3076, checked in by bird, 19 years ago

gawk 3.1.5

File size: 357 bytes
Line 
1# Sun Apr 25 13:28:58 IDT 1999
2# from Juegen Khars. This program should not core dump.
3 function ReadPGM(f, d) {
4print "ReadPGM"
5 d[1] = 1
6 }
7
8 function WritePGM(f, d) {
9print "WritePGM"
10 d[1] = 0
11 }
12
13 BEGIN {
14print "before ReadPGM"
15 ReadPGM("", d)
16print "after ReadPGM"
17print "before WritePGM"
18 WritePGM("", d)
19print "after WritePGM"
20 }
Note: See TracBrowser for help on using the repository browser.