home *** CD-ROM | disk | FTP | other *** search
-
- // example: skip lines
-
-
- // input the data file
- input "data.in" to data
-
- // skip the unwanted lines
- do while (someLeft data)
- read from data
- leave if (line beginsWith "==")
-
- // comment out the next line to make the program run faster
- refresh
-
- loop
-
- // copy the rest of the data to the report file
- copy lines from data to report
-