Skip to content

Latest commit

 

History

History
28 lines (22 loc) · 496 Bytes

Code.md

File metadata and controls

28 lines (22 loc) · 496 Bytes

Code

Inline Code

In HelloWorld.Java, shown below, we declare a class named HelloWorld.
The main method in this program prints "Hello World! :)" to the console.

Code Blocks

public class HelloWorld {
    public static void main(String[] args) {
        System.out.println("Hello World! :)");
    }
}

Syntax Highlighting

public class HelloWorld {
    public static void main(String[] args) {
        System.out.println("Hello World! :)");
    }
}