We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d8da5d commit 17cb81dCopy full SHA for 17cb81d
src/com/codefortomorrow/beginner/chapter1/practice/HelloWorld.java
@@ -10,10 +10,10 @@
10
*/
11
12
// a class is an "object" where we will place all our code inside
13
- public class HelloWorld{
+ public class HelloWorld {
14
// the main method (below) is the first thing that runs when your program is run
15
public static void main(String[] args) {
16
// write code here (replace the "" with "Hello World!")
17
System.out.println("");
18
}
19
- }
+ }
0 commit comments