Java - Command Line Arguments
Identify the error in the following Java program that tries to print the first command-line argument:
public class Test {
public static void main(String[] args) {
System.out.println(args(0));
}
}