mirror of
https://github.com/cocos/cocos-engine.git
synced 2026-09-06 15:48:37 +08:00
9 lines
174 B
C++
9 lines
174 B
C++
|
|
#include "cocos/base/Log.h"
|
|
|
|
int main(int argc, char **argv) {
|
|
CC_LOG_INFO("hello info");
|
|
CC_LOG_DEBUG("hello info");
|
|
CC_LOG_ERROR("hello info");
|
|
return 0;
|
|
} |