diff options
| author | Admin Panel <admin-panel@swave.lol> | 2026-03-08 11:34:09 +0000 |
|---|---|---|
| committer | Admin Panel <admin-panel@swave.lol> | 2026-03-08 11:34:09 +0000 |
| commit | eb74ccc12ed5f9205d962d2c0586b0f00c506332 (patch) | |
| tree | 87f87dc43974ecc942ef14bc865eb6156813cfda /hello.cpp | |
feat: create hello user program [kanban #3]kanban/task-3
Diffstat (limited to 'hello.cpp')
| -rw-r--r-- | hello.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/hello.cpp b/hello.cpp new file mode 100644 index 0000000..3b39d2a --- /dev/null +++ b/hello.cpp @@ -0,0 +1,6 @@ +#include <iostream> + +int main() { + std::cout << "hello user" << std::endl; + return 0; +} |
