12 lines
167 B
C++
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;
|
|
} |