I\'m just beginning to write programs in Java. What does the following Java code mean?
public static void main(String[] args)
What
In addition to all the previous comments.
can be written as
public static void main(String...arg)
or
public static void main(String...strings)