home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 10 Tools / 10-Tools.zip / ipo-101.zip / Samples.zip / readme.lst < prev    next >
File List  |  1999-03-09  |  3KB  |  45 lines

  1. Irie Pascal comes with the following sample programs.
  2.  
  3. add.pas         - A simple program that computes and displays the sum
  4.                         of the command-line arguments passed to it.
  5. append.pas      - Appends two files together, writting the appended files
  6.                   out to a third file.
  7. args.pas        - Displays the number of command-line arguments passed to it.
  8. ascii.pas       - This programs displays the ASCII table.
  9. bad.pas         - This program is referred to in the Users Guide to
  10.                   illustrate how the Compiler handles error messages.
  11. batch.pas       - A very primitive command processor.
  12. calc.pas        - A desktop calculator.
  13. cat.pas         - Writes one or more files to stdout (similar to the UNIX cat)
  14. date.pas        - Displays the system date and day.
  15. dirpas.pas      - A simple program which lists all the *.pas files in
  16.                   the current directory.
  17. hello.pas       - The classic hello world program.
  18. hex.pas         - Binary Hex file viewer
  19. imake.pas       - A simple makefile utility that processes a make language
  20.                   that I designed to be more readable than the standard
  21.                   make language. See the included 'makefile' file for
  22.                   the makefile I use to generate Irie Pascal. Note: this
  23.                   make utility does not do dependency checking.
  24. lines.pas       - Counts number of lines in text files.
  25. lowname.pas     - Converts a file's name to lowercase
  26. notstric.pas    - A simple program that illustrates the dangers of
  27.                   turning strict checking off.
  28. primes.pas      - A simple prime number generating program. I used this
  29.                   program to help me get an idea of how much slower
  30.                   Irie Pascal programs are than native code programs.
  31. prime2.pas      - Another simple prime number generating program. The
  32.                   interesting thing about this program is that is uses
  33.                   the built-in 'list' type.
  34. rename.pas      - Renames a file
  35. strange.pas     - A non-sensical program referred to in the Users Guide
  36.                   to illustrate how program parameters are handled.
  37. text.pas        - Converts text files into native file formats by converting
  38.                   end-of-line characters.
  39. type.pas        - A simple program which behaves like the 'type' command
  40.                   (i.e. it echoes a file to the screen).
  41. type2.pas       - A simple program which behaves like the 'type' command
  42.                   (i.e. it echoes a file to the screen).
  43. vowels.pas      - A simple vowel counting program which illustrates one
  44.                   method of handling program arguments using Irie Pascal.
  45.