From 205624d56cca84982d6c9b07007f69052ec92ff1 Mon Sep 17 00:00:00 2001 From: mafreeman03 Date: Thu, 19 Mar 2026 16:30:58 -0500 Subject: [PATCH] Matt Freeman - making hello world program --- helloWorld.cpp | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 helloWorld.cpp diff --git a/helloWorld.cpp b/helloWorld.cpp new file mode 100644 index 0000000..dbb8cce --- /dev/null +++ b/helloWorld.cpp @@ -0,0 +1,7 @@ +#include + +using namespace std; + +int main() { + cout << "Hello World." << endl; +}