项目文件夹

文件
feihongxu0824 e957442355 feat: refact cpp sdk (#27)
* refact cpp sdk

---------

Co-authored-by: zhouqinren.zqr <zhouqinren.zqr@alibaba-inc.com>
2026-01-21 20:05:42 +08:00

11 行
230 B
C++

#include <iostream>
#include <string>
#include <zvec/ailego/utility/string_helper.h>
using namespace zvec;
int main() {
std::string a{"hello world"};
std::cout << ailego::StringHelper::StartsWith(a, "hello") << std::endl;
}