RosettaCodeData/Task/Command-line-arguments/PL-I/command-line-arguments.pli
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07: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;