public static void main(String[] args){
The most annoying line a beginner Java programmer has to type in each one of their programs. This is also the line where most n00bish typos appear.
Comparison of Java to QBASIC
Java:
public class PrintHi{
public static void main(String args){
System.out.println("Hi");
}
}
QBASIC:
?"Hi"
Hmm, 95 characters or 5? Tough choice.
Java:
public class PrintHi{
public static void main(String args){
System.out.println("Hi");
}
}
QBASIC:
?"Hi"
Hmm, 95 characters or 5? Tough choice.