9 lines
191 B
Text
9 lines
191 B
Text
|
|
import extensions;
|
||
|
|
|
||
|
|
public program()
|
||
|
|
{
|
||
|
|
console.printLine(program_arguments.asEnumerable()); // the whole command line
|
||
|
|
|
||
|
|
console.printLine(program_arguments[0]); // the program name
|
||
|
|
}
|