klyn.Application.arguments
property
public static native readonly property arguments as List<String>
Description

Command-line arguments passed to the program.

The executable name is not included.

Example
for i = 0 to Int(Application.arguments.size) - 1:
print(Application.arguments[i])