public class Hello { public static void main(String[] args) { System.out.println("Hello, World!"); } } /* * public - visible outside of the class * private - visible only inside teh class (access specifiers) * static - belongs to the class as a whole, not to any object * void - if a function returns nothing, mark its return type void. * */