Java Programming Tutorial - Hello YouTube



public class apples { (everything begins with the class)
public static void main(String args[]) { (method header)
System.out.println("Hello Youitube"); (method body)
(built in method, it just prints a new line)
}
}


Comments