8 lines
191 B
Text
8 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
|
|
}
|