c-terminal-3d/test.cpp

13 lines
109 B
C++
Raw Normal View History

2024-04-22 04:08:05 +00:00
#include <iostream>
using namespace std;
int test() {
return 0;
}
int main() {
cout << test();
}