first commit

This commit is contained in:
陈赣
2026-06-03 12:43:14 +08:00
commit ba76cfae28
608 changed files with 120791 additions and 0 deletions

12
third_party/tinyexpr/README.md vendored Normal file
View File

@@ -0,0 +1,12 @@
a light weight math expression parser library from https://github.com/codeplea/tinyexpr.
```
mkdir build && cd build
cmake ..
make
```
1. library `libtinyexpr.so` saved to `build/libs`
2. sample `tinyexpr_test` saved to `build/samples`
run sample and input math expression something like `1+2*5`, it will calculate it and output result `11`.