···11+package com.whartonlabs.atproto;
22+33+//TIP To <b>Run</b> code, press <shortcut actionId="Run"/> or
44+// click the <icon src="AllIcons.Actions.Execute"/> icon in the gutter.
55+public class Main {
66+ static void main() {
77+ //TIP Press <shortcut actionId="ShowIntentionActions"/> with your caret at the highlighted text
88+ // to see how IntelliJ IDEA suggests fixing it.
99+ IO.println(String.format("Hello and welcome!"));
1010+1111+ for (int i = 1; i <= 5; i++) {
1212+ //TIP Press <shortcut actionId="Debug"/> to start debugging your code. We have set one <icon src="AllIcons.Debugger.Db_set_breakpoint"/> breakpoint
1313+ // for you, but you can always add more by pressing <shortcut actionId="ToggleLineBreakpoint"/>.
1414+ IO.println("i = " + i);
1515+ }
1616+ }
1717+}