Run ❯
Get your
own Java
server
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
public class Main { public static void main(String[] args) { // This is a single-line comment in Java System.out.println("Hello, world!"); /* This is a multi-line comment in Java */ System.out.println("Comments are ignored"); } }
Hello, world!
Comments are ignored