From e1dbb7ba612a52d19b57d8d31c09a89d84bd752f Mon Sep 17 00:00:00 2001 From: Paresh Kumar Sethy <69914622+vicky-co@users.noreply.github.com> Date: Fri, 9 Oct 2020 11:15:14 +0530 Subject: [PATCH 1/4] Create Ruby.rb --- Ruby.rb | 2 ++ 1 file changed, 2 insertions(+) create mode 100644 Ruby.rb diff --git a/Ruby.rb b/Ruby.rb new file mode 100644 index 0000000..58aab2b --- /dev/null +++ b/Ruby.rb @@ -0,0 +1,2 @@ +# Hello World Program in Ruby +puts "Hello World!"; From 1245500e2748065ce1cf4aebb1c4112924106814 Mon Sep 17 00:00:00 2001 From: Paresh Kumar Sethy <69914622+vicky-co@users.noreply.github.com> Date: Sat, 17 Oct 2020 01:04:07 +0530 Subject: [PATCH 2/4] Created a new hellow world cpp file --- C++/newhw.cpp | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 C++/newhw.cpp diff --git a/C++/newhw.cpp b/C++/newhw.cpp new file mode 100644 index 0000000..7867d62 --- /dev/null +++ b/C++/newhw.cpp @@ -0,0 +1,6 @@ +#include + +int main() { + std::cout << "Hello World!"; + return 0; +} From 04285557e33a56be2fc75405dcef9f34500b946c Mon Sep 17 00:00:00 2001 From: Paresh Kumar Sethy <69914622+vicky-co@users.noreply.github.com> Date: Sat, 17 Oct 2020 01:19:55 +0530 Subject: [PATCH 3/4] added new python with an instruction --- Python/adnew-py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Python/adnew-py diff --git a/Python/adnew-py b/Python/adnew-py new file mode 100644 index 0000000..42d2935 --- /dev/null +++ b/Python/adnew-py @@ -0,0 +1,4 @@ +# This program prints Hello, world! + +print('Hello, world!') +Output From 4ac5fc6f5cc4fb553c508ade5678b544a14c0833 Mon Sep 17 00:00:00 2001 From: Paresh Kumar Sethy <69914622+vicky-co@users.noreply.github.com> Date: Sat, 17 Oct 2020 02:07:52 +0530 Subject: [PATCH 4/4] added rust file with instruction Instruction added with program to ease in understanding --- Rust/hello-rust | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Rust/hello-rust diff --git a/Rust/hello-rust b/Rust/hello-rust new file mode 100644 index 0000000..f960ed4 --- /dev/null +++ b/Rust/hello-rust @@ -0,0 +1,4 @@ +fn main() { + // Statements here are executed when the compiled binary is called + println!("Hello World!"); +}