"vscode:/vscode.git/clone" did not exist on "929f72abc234e1327588fb15ddb031075c49c707"
value.cpp 108 Bytes
Newer Older
1
2
3
4
5
#include "yaml-cpp/value/value.h"

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