diff options
author | Bent Bisballe Nyeng <deva@aasimon.org> | 2023-07-24 13:32:16 +0200 |
---|---|---|
committer | Bent Bisballe Nyeng <deva@aasimon.org> | 2023-07-24 13:32:16 +0200 |
commit | 2f158e9e5f50ead79937d60d1b861385ab0c9f0a (patch) | |
tree | b780fbf321d42bea562e48374dad413866b1d1d6 /a1/hello.cc |
A1: Simple hello world
Diffstat (limited to 'a1/hello.cc')
-rw-r--r-- | a1/hello.cc | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/a1/hello.cc b/a1/hello.cc new file mode 100644 index 0000000..84d019f --- /dev/null +++ b/a1/hello.cc @@ -0,0 +1,6 @@ +import <iostream>; + +int main() +{ + std::cout << "Hello World!\n"; +} |