mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-09 20:51:16 +00:00
11 lines
164 B
C++
11 lines
164 B
C++
#include "yaml-cpp/value.h"
|
|
#include <map>
|
|
|
|
int main()
|
|
{
|
|
YAML::Value value = YAML::Parse("{foo: bar, monkey: value}");
|
|
std::cout << value << "\n";
|
|
|
|
return 0;
|
|
}
|