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) { boolean isLightOn = false; if (isLightOn) { System.out.println("The light is on."); // This will not be printed } System.out.println("This line always runs."); } }
This line always runs.