Skip to content

Commit a5e61e7

Browse files
committed
Add a C++ "Hello World" example
1 parent 4d10056 commit a5e61e7

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

examples/src/linux/hello.cpp

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
#include <iostream>
2+
3+
int main(int argc, const char** argv)
4+
{
5+
std::cout << "Hello, World!" << std::endl;
6+
7+
return 0;
8+
}

0 commit comments

Comments
 (0)