Skip to content

Latest commit

 

History

History
13 lines (9 loc) · 464 Bytes

README.md

File metadata and controls

13 lines (9 loc) · 464 Bytes

Java "hello world" program

This repository contains very trivial program on Java. To build and run this program, follow the instruction:

$ mvn package
$ java -cp target/hello.jar com.example.hello.Hello
Hello, world!

Note that you should have to install JDK 8 and Maven as prerequisite.