From bd268abdbb790eebd592d8a3034bbaa5572b074d Mon Sep 17 00:00:00 2001 From: abbeyradoncic Date: Mon, 15 Aug 2016 18:46:13 -0400 Subject: [PATCH] Create helloworld-try --- helloworld-try | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 helloworld-try diff --git a/helloworld-try b/helloworld-try new file mode 100644 index 0000000..dcb1287 --- /dev/null +++ b/helloworld-try @@ -0,0 +1,6 @@ +public class Hello { + public static void main(String[] args) { + // generate some simple output + System.out.println("Hello, World!"); +} +}