From d0afe9a6b71e87a0434ecbe08a5896dc97326fce Mon Sep 17 00:00:00 2001 From: Albin Ansel Joseph Date: Tue, 16 Oct 2018 22:22:04 +0530 Subject: [PATCH] added hello world_new file --- C/hello_new.c | 7 +++++++ Java/hello_new.java | 5 +++++ Python/hello_new.py | 1 + 3 files changed, 13 insertions(+) create mode 100644 C/hello_new.c create mode 100644 Java/hello_new.java create mode 100644 Python/hello_new.py diff --git a/C/hello_new.c b/C/hello_new.c new file mode 100644 index 000000000..6ec388a3c --- /dev/null +++ b/C/hello_new.c @@ -0,0 +1,7 @@ +#include +int main() +{ + // printf() displays the string inside quotation + printf("Hello, World!"); + return 0; +} \ No newline at end of file diff --git a/Java/hello_new.java b/Java/hello_new.java new file mode 100644 index 000000000..6e9f4032b --- /dev/null +++ b/Java/hello_new.java @@ -0,0 +1,5 @@ +class hello { + public static void main(String args[]){ + System.out.println("Hello World");//prints hello world + } +} \ No newline at end of file diff --git a/Python/hello_new.py b/Python/hello_new.py new file mode 100644 index 000000000..8ad280dea --- /dev/null +++ b/Python/hello_new.py @@ -0,0 +1 @@ +print("Hello World.") \ No newline at end of file