Command-line arguments: Difference between revisions

Content added Content deleted
(Fixed wiki link)
Line 602: Line 602:
class Line {
class Line {
function : Main(args : String[]) ~ Nil {
function : Main(args : String[]) ~ Nil {
for(i := 0; i < args->GetSize(); i := i + 1;) {
each(i : args) {
args[i]->PrintLine();
args[i]->PrintLine();
};
};