From 51487a174fb33a6e72e6721ab74db262f808a055 Mon Sep 17 00:00:00 2001 From: divymakkar <43524307+divymakkar@users.noreply.github.com> Date: Wed, 31 Oct 2018 23:17:02 +0530 Subject: [PATCH] Create divy.java --- divy.java | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 divy.java diff --git a/divy.java b/divy.java new file mode 100644 index 0000000..6d50415 --- /dev/null +++ b/divy.java @@ -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"); + } + +}