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