mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-09 04:41:16 +00:00
10 lines
101 B
C++
10 lines
101 B
C++
#include "yaml-cpp/value/value.h"
|
|
|
|
int main()
|
|
{
|
|
YAML::Value value;
|
|
value = "Hello";
|
|
|
|
return 0;
|
|
}
|