Skip to content

Commit 48dc66b

Browse files
armeetjJJ27
andauthored
Update src/com/codefortomorrow/beginner/chapter1/solutions/HelloWorld.java
Co-authored-by: JJ27 <[email protected]>
1 parent 9413324 commit 48dc66b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/com/codefortomorrow/beginner/chapter1/solutions/HelloWorld.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@
1010
*/
1111

1212
// a class is an "object" where we will place all our code inside
13-
public class HelloWorld{
13+
public class HelloWorld {
1414
// the main method (below) is the first thing that runs when your program is run
1515
public static void main(String[] args) {
1616
// write code here (replace the "" with "Hello World!")
1717
System.out.println("Hello World!");
1818
}
19-
}
19+
}

0 commit comments

Comments
 (0)