mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-02-06 11:43:36 +00:00
7 lines
114 B
C++
7 lines
114 B
C++
#include <iostream>
|
|
#include <string>
|
|
|
|
extern std::string foo();
|
|
|
|
int main() { std::cout << foo() << std::endl; }
|