Files
linuxdeploy/tests/simple_executable/simple_executable.cpp
T

10 lines
123 B
C++
Raw Normal View History

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