This repository has been archived on 2025-04-04. You can view files and clone it, but cannot push or open issues or pull requests.
mathematical-algorithms-cpp/src/main.cpp

8 lines
106 B
C++
Raw Normal View History

2025-03-23 21:28:03 +09:00
#include <iostream>
using namespace std;
int main() {
cout << "hello world" << endl;
return 0;
}