Skip to content

Commit 17cb81d

Browse files
armeetjphrdang
andauthored
Update src/com/codefortomorrow/beginner/chapter1/practice/HelloWorld.java
Co-authored-by: Rebecca Dang <[email protected]>
1 parent 2d8da5d commit 17cb81d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/com/codefortomorrow/beginner/chapter1/practice/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("");
1818
}
19-
}
19+
}

0 commit comments

Comments
 (0)