home *** CD-ROM | disk | FTP | other *** search
-
- // example: copy lines
-
- // remove separator lines and stop when a terminator line is read
-
-
- // input the data file
- input "data.in" to data
-
- // copy the wanted lines to the report file
- copy lines from data to report where (not (line beginsWith "--")) until (line contains "***END***")
-