TOON is available in multiple languages. Choose your preferred ecosystem and start integrating TOON into your projects today.
Add the official ctoon package to your project
#include <toon.hpp>
Quick start guide for encoding and decoding TOON format in C++
// Check repository for specific usage details #include "toon.hpp" int main() { auto data = toon::object{{"name", "Alice"}, {"age", 30}}; std::cout << toon::encode(data) << std::endl; return 0; }