Tweak sandbox

This commit is contained in:
Jesse Beder
2012-05-22 12:59:58 -05:00
parent 5e0886db87
commit 879f96d2f6

View File

@@ -11,9 +11,10 @@ int main()
out << YAML::BeginMap << YAML::Comment("b");
out << "pens" << YAML::Comment("foo") << "a" << YAML::Comment("bar");
out << "pencils" << "b";
out << YAML::EndMap;
out << YAML::EndMap << YAML::Comment("monkey");
out << "item 2";
out << YAML::EndSeq;
out << YAML::Comment("end");
std::cout << out.c_str() << "\n";
return 0;