您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

13 行
169 B

  1. // cotire example project main
  2. #include <string>
  3. #include "example.h"
  4. #include "log.h"
  5. int main()
  6. {
  7. std::string msg = example::get_message();
  8. logging::info(msg);
  9. }