mirror of
https://github.com/mesonbuild/meson.git
synced 2026-06-30 19:57:45 +00:00
12 lines
135 B
C++
12 lines
135 B
C++
|
|
#include <iostream>
|
|
|
|
extern "C"
|
|
int foo();
|
|
|
|
int main(void) {
|
|
std::cout << "Starting\n";
|
|
std::cout << foo() << "\n";
|
|
return 0;
|
|
}
|