Files
linuxdeploy/tests/simple_executable/simple_executable.cpp
T

11 lines
131 B
C++
Raw Normal View History

2018-10-12 17:56:42 +02:00
#include <cstdio>
extern "C" { void hello_world(); }
int main() {
printf("Hello World");
hello_world();
return 0;
}