c++ userland example

This commit is contained in:
Ciro Santilli
2018-05-08 15:04:41 +01:00
parent 237b7603b7
commit 9f876f7897
3 changed files with 13 additions and 3 deletions

View File

@@ -0,0 +1,5 @@
#include <iostream>
int main() {
std::cout << "hello world" << std::endl;
}