value.cpp 108 Bytes
Newer Older
1
2
3
4
5
#include "yaml-cpp/value/value.h"

int main()
{
	YAML::Value value;
beder's avatar
beder committed
6
	value["key"] = "value";
7
8
9
	
	return 0;
}