linuxdeploy/tests/simple_executable/simple_executable.cpp
2018-10-24 13:09:59 +02:00

11 lines
131 B
C++

#include <cstdio>
extern "C" { void hello_world(); }
int main() {
printf("Hello World");
hello_world();
return 0;
}