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