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; +} 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 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!"; 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!"); +}