RosettaCodeData/Task/Command-line-arguments/PL-I/command-line-arguments.pli
2023-07-01 13:44:08 -04:00

8 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;