zengine-old/engine/src/main.cpp

10 lines
150 B
C++
Raw Normal View History

2024-02-18 21:33:25 +08:00
#include <iostream>
using namespace std;
2024-02-07 16:24:11 +08:00
2024-02-18 21:33:25 +08:00
int main(int argc, char** argv)
{
const char* name = "hello";
cout << name << endl;
return 0;
2023-07-05 09:27:55 +08:00
}