From ea046912c778dc64ac1dcc25bbc7a1e58f89b196 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Wed, 8 May 2024 01:50:14 +0530 Subject: First commit! --- src/main.cpp | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/main.cpp (limited to 'src') diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 0000000..1c5912b --- /dev/null +++ b/src/main.cpp @@ -0,0 +1,20 @@ +/* Copyright (C) 2024 Aryadev Chavali + + * You may distribute and modify this code under the terms of the MIT + * license. You should have received a copy of the MIT license with + * this file. If not, please write to: aryadev@aryadevchavali.com. + + * Created: 2024-05-08 + * Author: Aryadev Chavali + * Description: Entrypoint + */ + +#include + +using std::cout, std::endl; + +int main(void) +{ + cout << "Hello, world!" << endl; + return 0; +} -- cgit v1.2.3-13-gbd6f