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 9413324 commit 48dc66bCopy full SHA for 48dc66b
src/com/codefortomorrow/beginner/chapter1/solutions/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("Hello World!");
18
}
19
- }
+ }
0 commit comments