1
0
LearningCPP/main.cpp

12 lines
101 B
C++

#include <iostream>
int test();
int main()
{
std::cout << test();
}
int test() {
}