test1/main.cpp

12 lines
167 B
C++
Raw Permalink Normal View History

2025-01-11 13:54:02 +08:00
#include <iostream>
using namespace std;
int main(int argc, char *argv[])
{
cout << "hello world!" << endl;
cout << "hello gitea!" << endl;
return 0;
}