mirror of
https://github.com/audacity/linuxdeploy.git
synced 2025-12-14 12:53:21 -06:00
11 lines
131 B
C++
11 lines
131 B
C++
#include <cstdio>
|
|
|
|
extern "C" { void hello_world(); }
|
|
|
|
int main() {
|
|
printf("Hello World");
|
|
hello_world();
|
|
|
|
return 0;
|
|
}
|