9 lines
260 B
Text
9 lines
260 B
Text
|
|
/* The entire command line except the command word itself is passed */
|
||
|
|
/* to the parameter variable in PL/I. */
|
||
|
|
program: procedure (command_line) options (main);
|
||
|
|
declare command_line character (100) varying;
|
||
|
|
|
||
|
|
...
|
||
|
|
|
||
|
|
end program;
|