Skip to content

Commit e21bd17

Browse files
Create Helloworld.java
1 parent 3bbce4b commit e21bd17

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

Helloworld.java

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)