10 lines
129 B
C++
10 lines
129 B
C++
#include <iostream>
|
|
|
|
using namespace std;
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
cout << "hello xmake!" << endl;
|
|
return 0;
|
|
}
|