yaml-cpp/util/value.cpp
2011-09-07 00:45:28 -05:00

10 lines
108 B
C++

#include "yaml-cpp/value/value.h"
int main()
{
YAML::Value value;
value["key"] = "value";
return 0;
}