From b029722c2ce15094d45b00a7d98dff0e2e0c2291 Mon Sep 17 00:00:00 2001 From: Shree Mishra <65803594+mishrashree18@users.noreply.github.com> Date: Fri, 2 Oct 2020 20:29:28 +0530 Subject: [PATCH 1/6] Create helloworld-shreemishra.py --- Python/helloworld-shreemishra.py | 1 + 1 file changed, 1 insertion(+) create mode 100644 Python/helloworld-shreemishra.py diff --git a/Python/helloworld-shreemishra.py b/Python/helloworld-shreemishra.py new file mode 100644 index 0000000..ad35e5a --- /dev/null +++ b/Python/helloworld-shreemishra.py @@ -0,0 +1 @@ +print("Hello World") From 899ba73e30c2e38d2c41a36b939898ecf4b1ed43 Mon Sep 17 00:00:00 2001 From: Shree Mishra <65803594+mishrashree18@users.noreply.github.com> Date: Fri, 2 Oct 2020 20:30:02 +0530 Subject: [PATCH 2/6] Update Readme.md --- Python/Readme.md | 1 + 1 file changed, 1 insertion(+) diff --git a/Python/Readme.md b/Python/Readme.md index 3cad284..1e83e90 100644 --- a/Python/Readme.md +++ b/Python/Readme.md @@ -1 +1,2 @@ ### Hello World in Python +## By Shree Mishra From ad8079580f2d3f5fe7c9e7a0b55c46847dd49c36 Mon Sep 17 00:00:00 2001 From: Shree Mishra <65803594+mishrashree18@users.noreply.github.com> Date: Wed, 7 Oct 2020 21:53:04 +0530 Subject: [PATCH 3/6] Create helloworld-shreemishra.cpp --- C++/helloworld-shreemishra.cpp | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 C++/helloworld-shreemishra.cpp diff --git a/C++/helloworld-shreemishra.cpp b/C++/helloworld-shreemishra.cpp new file mode 100644 index 0000000..6b56efa --- /dev/null +++ b/C++/helloworld-shreemishra.cpp @@ -0,0 +1,9 @@ +#include + +using namespace std; + +int main(){ + + std::cout << "Hello world"; + return 0; +} From a35360f39eeedc9d74241839bb12b8df73089504 Mon Sep 17 00:00:00 2001 From: Shree Mishra <65803594+mishrashree18@users.noreply.github.com> Date: Wed, 7 Oct 2020 21:53:36 +0530 Subject: [PATCH 4/6] Update readme.md --- C++/readme.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/C++/readme.md b/C++/readme.md index 948bcfe..bf65724 100644 --- a/C++/readme.md +++ b/C++/readme.md @@ -1 +1,3 @@ -This is a simple Hello world program using C++! +### Hello world program using C++ + +### Shree Mishra From 61b85a902a7a74492fe0a3b48e993a7ff25b913e Mon Sep 17 00:00:00 2001 From: Shree Mishra <65803594+mishrashree18@users.noreply.github.com> Date: Wed, 7 Oct 2020 21:53:51 +0530 Subject: [PATCH 5/6] Update readme.md --- C++/readme.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/C++/readme.md b/C++/readme.md index bf65724..16de832 100644 --- a/C++/readme.md +++ b/C++/readme.md @@ -1,3 +1,3 @@ ### Hello world program using C++ -### Shree Mishra +### By Shree Mishra From 1964e1a284052479834f5ad0d9126f1933049e65 Mon Sep 17 00:00:00 2001 From: Shree Mishra <65803594+mishrashree18@users.noreply.github.com> Date: Thu, 8 Oct 2020 09:53:42 +0530 Subject: [PATCH 6/6] Create helloworld-shreemishra.cpp --- C/helloworld-shreemishra.cpp | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 C/helloworld-shreemishra.cpp diff --git a/C/helloworld-shreemishra.cpp b/C/helloworld-shreemishra.cpp new file mode 100644 index 0000000..3b59e24 --- /dev/null +++ b/C/helloworld-shreemishra.cpp @@ -0,0 +1,6 @@ +#include +int main() { + + printf("Hello World"); + return 0; +}