We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3bbce4b commit e21bd17Copy full SHA for e21bd17
Helloworld.java
@@ -0,0 +1,15 @@
1
+Helloworld
2
+------------
3
+public class Main {
4
+ public static void main(String[] args) {
5
+ //TIP Press <shortcut actionId="ShowIntentionActions"/> with your caret at the highlighted text
6
+ // to see how IntelliJ IDEA suggests fixing it.
7
+ System.out.printf("Hello and welcome!");
8
+
9
+ for (int i = 1; i <= 5; i++) {
10
+ //TIP Press <shortcut actionId="Debug"/> to start debugging your code. We have set one <icon src="AllIcons.Debugger.Db_set_breakpoint"/> breakpoint
11
+ // for you, but you can always add more by pressing <shortcut actionId="ToggleLineBreakpoint"/>.
12
+ System.out.println("i = " + i);
13
+ }
14
15
+}
0 commit comments