mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2025-03-05 13:45:36 +00:00
6 lines
114 B
C++
6 lines
114 B
C++
#include <iostream>
|
|
#include <string>
|
|
|
|
extern std::string foo();
|
|
|
|
int main() { std::cout << foo() << std::endl; }
|