2023-07-01 11:58:00 -04:00
|
|
|
import extensions;
|
|
|
|
|
|
2026-02-01 16:33:20 -08:00
|
|
|
public Program()
|
2023-07-01 11:58:00 -04:00
|
|
|
{
|
2026-02-01 16:33:20 -08:00
|
|
|
Console.printLine(Program_arguments.asEnumerable()); // the whole command line
|
2023-07-01 11:58:00 -04:00
|
|
|
|
2026-02-01 16:33:20 -08:00
|
|
|
Console.printLine(Program_arguments[0]); // the program name
|
2023-07-01 11:58:00 -04:00
|
|
|
}
|