yaml-cpp/util/value.cpp

10 lines
102 B
C++

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