RosettaCodeData/Task/Command-line-arguments/PL-I/command-line-arguments.pli

9 lines
260 B
Plaintext

/* 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;