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) { String txt = "Hello"; System.out.println(txt.charAt(0)); // H System.out.println(txt.charAt(4)); // o } }
H
o