并入zoost库。

This commit is contained in:
2026-03-29 19:02:44 +08:00
parent 4419d606a8
commit 1346521ad0
269 changed files with 114399 additions and 12 deletions

12
test/baseTest.cpp Normal file
View File

@@ -0,0 +1,12 @@
#include <iostream>
#include <zoost/zoost.h>
int main()
{
zoostCommon::SetOutputU8();
std::string data1("你好,世界。");
std::string data2("Hello, World!");
std::cout << data1 << std::endl;
std::cout << data2 << std::endl;
return 0;
}