summaryrefslogtreecommitdiffstats
path: root/C++/HelloWorld
diff options
context:
space:
mode:
authormsglm <msglm@techchud.xyz>2023-01-14 05:31:48 -0600
committermsglm <msglm@techchud.xyz>2023-01-14 05:31:48 -0600
commit9d53d8857eaa1c9405894a88ca75bc4657e42f35 (patch)
treeeb1efc1d028b949dd83bb710c68be8eff58f26e7 /C++/HelloWorld
downloadschool-code-9d53d8857eaa1c9405894a88ca75bc4657e42f35.tar.gz
school-code-9d53d8857eaa1c9405894a88ca75bc4657e42f35.tar.bz2
school-code-9d53d8857eaa1c9405894a88ca75bc4657e42f35.zip
Inital CommitHEADmaster
Diffstat (limited to 'C++/HelloWorld')
-rwxr-xr-xC++/HelloWorld/HelloWorldbin0 -> 16561 bytes
-rw-r--r--C++/HelloWorld/HelloWorld.cpp6
2 files changed, 6 insertions, 0 deletions
diff --git a/C++/HelloWorld/HelloWorld b/C++/HelloWorld/HelloWorld
new file mode 100755
index 0000000..29f120d
--- /dev/null
+++ b/C++/HelloWorld/HelloWorld
Binary files differ
diff --git a/C++/HelloWorld/HelloWorld.cpp b/C++/HelloWorld/HelloWorld.cpp
new file mode 100644
index 0000000..2b0af1e
--- /dev/null
+++ b/C++/HelloWorld/HelloWorld.cpp
@@ -0,0 +1,6 @@
+#include <iostream>
+int main() {
+
+ std::cout << "Hello World!\nMy name is Anonymous\n";
+ return 0;
+}