diff options
author | Oskar <[email protected]> | 2024-07-28 12:52:38 +0200 |
---|---|---|
committer | Oskar <[email protected]> | 2024-07-28 12:52:38 +0200 |
commit | 5aac3c3f8bcfef0b2aad28d91d87b9ebf1d5e7df (patch) | |
tree | 38736b9f0c57f69e272121e0fc1f3969bb7468e2 /helloworld.cpp |
first commit
Diffstat (limited to 'helloworld.cpp')
-rw-r--r-- | helloworld.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/helloworld.cpp b/helloworld.cpp new file mode 100644 index 0000000..56575d4 --- /dev/null +++ b/helloworld.cpp @@ -0,0 +1,9 @@ +#include <iostream> +#include <stdio.h> + +int main (void) { + + std::cout << "Hello world!" << std::endl; + + return 0; +} |