home *** CD-ROM | disk | FTP | other *** search
-
- // example: skip lines
-
-
- // input the data file
- input "data.in" to data
-
- // skip the unwanted lines
- skip lines from data until (line beginsWith "==")
-
- // copy the rest of the data to the report file
- copy lines from data to report
-