public class ekko { public static void main (String[] args) { for (int i = 0; i < args.length; i++) System.out.println( args[i] ); } }
gcj --main=ekko ekko.java -o ekko
./ekko this ?this
How do I get rid of this leading question mark?
TIA
-d
public class ekko { public static void main (String[] args) { for (int i = 0; i < args.length; i++) System.out.println( args[i] ); } }
./ekko this ?this