home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power-Programmierung
/
CD1.mdf
/
magazine
/
cmplangm
/
1989_6
/
awk
/
flow.awk
< prev
next >
Wrap
Text File
|
1988-03-06
|
425b
|
24 lines
BEGIN {
a[1] = "one"; a[2] = "two"
a[3] = "three"; a[4] = "four"
a[5] = "five"; a[6] = "six"
}
END {
for (i in a) {
if (i == 2) continue
if (i == 5) break
print i, a[i]
}
}
BEGIN {
while (i++ < 6) $i = a[i]
}
{ print "never executed" }
BEGIN {
print
print ""
exit
}