#include "cpptoml.h" #include int main() { auto tea = cpptoml::parse_file("tea.toml"); auto s = tea->get_as("str"); if (s) { std::cout << *s << std::endl; return 0; } return 1; }