diff options
author | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-05-08 01:50:14 +0530 |
---|---|---|
committer | Aryadev Chavali <aryadev@aryadevchavali.com> | 2024-05-08 01:50:14 +0530 |
commit | ea046912c778dc64ac1dcc25bbc7a1e58f89b196 (patch) | |
tree | 186a0a5e1663ef8949d72917183d7b9e6685f0c7 /src/main.cpp | |
download | snek-ea046912c778dc64ac1dcc25bbc7a1e58f89b196.tar.gz snek-ea046912c778dc64ac1dcc25bbc7a1e58f89b196.tar.bz2 snek-ea046912c778dc64ac1dcc25bbc7a1e58f89b196.zip |
First commit!
Diffstat (limited to 'src/main.cpp')
-rw-r--r-- | src/main.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
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 <iostream> + +using std::cout, std::endl; + +int main(void) +{ + cout << "Hello, world!" << endl; + return 0; +} |