Files
yaml-cpp/util/value.cpp
2011-09-07 00:20:23 -05:00

10 lines
101 B
C++

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