Accessing Data on the Command Line
There are two main ways in which a program can access data on the command
line:
- ACCEPT data-name FROM COMMAND-LINE. This
causes the complete contents of the command line to be moved to data-name.
- Alternately, you can access individual arguments on the command line,
using:
- DISPLAY ... UPON ARGUMENT-NUMBER
- ACCEPT ... FROM ARGUMENT-NUMBER
Related Topics: