userland: move hello_cpp.cpp into cpp

This commit is contained in:
Ciro Santilli 六四事件 法轮功
2019-03-13 00:00:00 +00:00
parent e32b1cba45
commit a85ca696c4

7
userland/cpp/hello.cpp Normal file
View File

@@ -0,0 +1,7 @@
/* https://github.com/cirosantilli/linux-kernel-module-cheat#sanity-checks */
#include <iostream>
int main() {
std::cout << "hello" << std::endl;
}