From 57b95595ad9e419c674c46907de0c3fea78f09cf Mon Sep 17 00:00:00 2001 From: sandi-aris Date: Thu, 1 Oct 2020 12:48:49 +0700 Subject: [PATCH] add 1 file C and 1 java Hello world --- HelloHacktober.java | 8 ++++++++ helloworld.c | 6 ++++++ 2 files changed, 14 insertions(+) create mode 100644 HelloHacktober.java create mode 100644 helloworld.c diff --git a/HelloHacktober.java b/HelloHacktober.java new file mode 100644 index 0000000..2608678 --- /dev/null +++ b/HelloHacktober.java @@ -0,0 +1,8 @@ +package com.me.vd.main; + +public class HelloHacktober { + public static void main(String args[]) { + System.out.println("Hello,World!"); + + } +} diff --git a/helloworld.c b/helloworld.c new file mode 100644 index 0000000..dd7b958 --- /dev/null +++ b/helloworld.c @@ -0,0 +1,6 @@ +#include +int main() { + + printf("Hello, World!"); + return 0; +} \ No newline at end of file