Files
linux-kernel-module-cheat/userland/cpp/hello.cpp
Ciro Santilli 六四事件 法轮功 a85ca696c4 userland: move hello_cpp.cpp into cpp
2019-03-13 18:25:53 +00:00

8 lines
154 B
C++

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