diff options
author | Steru <jerrydream111@gmail.com> | 2024-06-27 13:08:14 +0200 |
---|---|---|
committer | Steru <jerrydream111@gmail.com> | 2024-06-27 13:08:14 +0200 |
commit | f29380e112cb28df1240ad5ed218a26d87fae731 (patch) | |
tree | 47982af1bb26497e705638b7169dbc7c7987169d /src/main/main.cpp | |
parent | f039734dddd1262909219ed14d9bf07e4d35ff81 (diff) |
Created project structure.
Diffstat (limited to 'src/main/main.cpp')
-rw-r--r-- | src/main/main.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main/main.cpp b/src/main/main.cpp new file mode 100644 index 0000000..bc8f460 --- /dev/null +++ b/src/main/main.cpp @@ -0,0 +1,6 @@ +#include <iostream> + +int main() { + std::cout << "Hello, World!" << std::endl; + return 0; +} |