diff options
| -rw-r--r-- | README.md | 18 |
1 files changed, 18 insertions, 0 deletions
@@ -14,6 +14,24 @@ The OCL requires the following: - [Git](https://git-scm.com/) - OCL.Core +## Using TProc: + +Taken from the example, you can see: + +```cpp +int main() +{ + auto rope = tproc::crope("The Quick Brown Fox Jumps Over The Lazy Dog"); + auto new_elem = std::make_unique<tproc::crope>(", and Jumps again."); + + rope.concat(new_elem.get()); + + std::cout << *++rope << std::endl; +} +``` + +The library is header-only as well, so no compilation step is needed, and is written in modern C++ (C++17 or later). + ## Freestanding Status The Freestanding Status is a concept where a module is evaluated on whether it has or is fully freestanding or not. |
