James Warner's first contribution

This commit is contained in:
44758073
2018-10-06 09:36:18 +10:00
parent c5577c137a
commit 42e3460363
2 changed files with 13 additions and 0 deletions

8
code/jameswarner.java Normal file
View File

@@ -0,0 +1,8 @@
public class HelloWorld {
public static void main(String[] args) {
// Prints "Hello, World" to the terminal window.
System.out.println("Hello, World");
}
}