Merge pull request #171 from G0ldmember/patch-1

Update java.md
This commit is contained in:
Julien Le Coupanec
2021-03-13 19:14:06 +01:00
committed by GitHub

View File

@@ -4,9 +4,9 @@
//Text file name HelloWorld.java
public class HelloWorld {
// main() is the method
public static void main (String[] arfs)
public static void main (String[] args)
//Prints "Hello World" in the terminal window.
System.out.pritn("Hello World");
System.out.println("Hello World");
}
```