diff options
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; +} |