mirror of
https://github.com/RPCS3/yaml-cpp.git
synced 2026-07-24 04:00:43 -04:00
10 lines
118 B
C++
10 lines
118 B
C++
#include "yaml-cpp/value.h"
|
|
#include <map>
|
|
|
|
int main()
|
|
{
|
|
YAML::Value value = YAML::Parse("foo: bar");
|
|
|
|
return 0;
|
|
}
|