klyn.Application.arguments
field
public static native arguments as List<String>
Description
Command-line arguments passed to the program. The executable name is not included. for i = 0 to Int(Application.arguments.size) - 1: print(Application.arguments[i])
Example