From 14249e235d42706d004358792a2fc78504900e8d Mon Sep 17 00:00:00 2001 From: vivektangudu2024 <75472985+vivektangudu2024@users.noreply.github.com> Date: Fri, 1 Oct 2021 11:08:21 +0530 Subject: [PATCH 1/2] Uploaded my hello world files --- Contributors/vivek tangudu/hello_in_c++.cpp | 14 ++++++++++++++ Contributors/vivek tangudu/hello_in_c.c | 6 ++++++ Contributors/vivek tangudu/hello_in_java.java | 5 +++++ Contributors/vivek tangudu/hello_in_python.py | 1 + 4 files changed, 26 insertions(+) create mode 100644 Contributors/vivek tangudu/hello_in_c++.cpp create mode 100644 Contributors/vivek tangudu/hello_in_c.c create mode 100644 Contributors/vivek tangudu/hello_in_java.java create mode 100644 Contributors/vivek tangudu/hello_in_python.py diff --git a/Contributors/vivek tangudu/hello_in_c++.cpp b/Contributors/vivek tangudu/hello_in_c++.cpp new file mode 100644 index 0000000..e31368a --- /dev/null +++ b/Contributors/vivek tangudu/hello_in_c++.cpp @@ -0,0 +1,14 @@ +// Header file for input output functions +#include + +using namespace std; + +// main function - +// where the execution of program begins +int main() +{ + // prints hello world + cout<<"Hello World"; + + return 0; +} \ No newline at end of file diff --git a/Contributors/vivek tangudu/hello_in_c.c b/Contributors/vivek tangudu/hello_in_c.c new file mode 100644 index 0000000..b35231e --- /dev/null +++ b/Contributors/vivek tangudu/hello_in_c.c @@ -0,0 +1,6 @@ +#include +int main() { + // printf() displays the string inside quotation + printf("Hello, World!"); + return 0; +} \ No newline at end of file diff --git a/Contributors/vivek tangudu/hello_in_java.java b/Contributors/vivek tangudu/hello_in_java.java new file mode 100644 index 0000000..a39903d --- /dev/null +++ b/Contributors/vivek tangudu/hello_in_java.java @@ -0,0 +1,5 @@ +class Simple{ + public static void main(String args[]){ + System.out.println("Hello World"); + } +} \ No newline at end of file diff --git a/Contributors/vivek tangudu/hello_in_python.py b/Contributors/vivek tangudu/hello_in_python.py new file mode 100644 index 0000000..e75154b --- /dev/null +++ b/Contributors/vivek tangudu/hello_in_python.py @@ -0,0 +1 @@ +print("hello world") \ No newline at end of file From 01df77c07c326e6f4696ac535712e51f4ddfd3cd Mon Sep 17 00:00:00 2001 From: vivektangudu2024 <75472985+vivektangudu2024@users.noreply.github.com> Date: Wed, 6 Oct 2021 23:12:29 +0530 Subject: [PATCH 2/2] Add files via upload --- Contributors/vivek tangudu/hello_in_javascript.js | 1 + 1 file changed, 1 insertion(+) create mode 100644 Contributors/vivek tangudu/hello_in_javascript.js diff --git a/Contributors/vivek tangudu/hello_in_javascript.js b/Contributors/vivek tangudu/hello_in_javascript.js new file mode 100644 index 0000000..73c0265 --- /dev/null +++ b/Contributors/vivek tangudu/hello_in_javascript.js @@ -0,0 +1 @@ +console.log('Hello World'); \ No newline at end of file