mirror of
https://github.com/SimoneN64/Kaizen.git
synced 2025-04-02 10:41:53 -04: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; }
|