Using the Haxe programming language, is it possible to print the command line arguments passed to the application?
I am trying to rewrite this Java program (which simply prints command line arguments) in Haxe.
public class JavaExample{ public static void main(String[] args){ for(int i = 0; i < args.length; i++){ System.out.println(args[i]); } } }
source share