yaml-cpp/util/sandbox.cpp
2012-05-22 13:57:44 -05:00

22 lines
613 B
C++

#include "yaml-cpp/yaml.h"
#include <iostream>
int main()
{
YAML::Emitter out;
out << YAML::Comment("Hello");
out << YAML::BeginSeq;
out << YAML::Comment("Hello");
out << YAML::Anchor("a") << YAML::Comment("anchor") << "item 1" << YAML::Comment("a");
out << YAML::BeginMap << YAML::Comment("b");
out << "pens" << YAML::Comment("foo") << "a" << YAML::Comment("bar");
out << "pencils" << 15;
out << YAML::EndMap << YAML::Comment("monkey");
out << "item 2";
out << YAML::EndSeq;
out << YAML::Comment("end");
std::cout << out.c_str() << "\n";
return 0;
}