Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 377 Bytes

File metadata and controls

21 lines (14 loc) · 377 Bytes

Java Coding

Resources

IDEs

Examples

Hello World

public class Hello { // the file name here would be Hello.java
    public static void main(String[] args){
        System.out.println("Hello hackers!"); // println prints with a new line
    }
}