mirror of
https://github.com/audacity/linuxdeploy.git
synced 2025-12-13 20:00:21 -06:00
10 lines
123 B
C++
10 lines
123 B
C++
#include <cstdio>
|
|
#include <simple_library.h>
|
|
|
|
int main() {
|
|
printf("Hello World");
|
|
hello_world();
|
|
|
|
return 0;
|
|
}
|