test1/main.cpp
2025-01-11 13:54:02 +08:00

12 lines
167 B
C++

#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
cout << "hello world!" << endl;
cout << "hello gitea!" << endl;
return 0;
}