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