Skip to content

Commit

Permalink
Add C++ Hello World Example
Browse files Browse the repository at this point in the history
  • Loading branch information
kadler committed May 1, 2017
1 parent f5ffb35 commit c0550b6
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions code_examples/c++/helloWorld.cpp
@@ -0,0 +1,6 @@
#include <iostream>

int main(int argc, char** argv) {
std::cout << "Hello, world!" << std::endl;
return 0;
}

0 comments on commit c0550b6

Please sign in to comment.