pascalabcnet/TestSamples/CompilationSamples/args.pas

5 lines
155 B
ObjectPascal
Raw Normal View History

2015-05-14 22:35:07 +03:00
begin
Writeln('CommandLineArgs.Length=',CommandLineArgs.Length);
foreach CommandLineArg: string in CommandLineArgs do
Writeln(CommandLineArg);
end.