mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2026-01-02 03:57:55 +08:00
12 lines
161 B
C++
12 lines
161 B
C++
#include "yaml-cpp/yaml.h"
|
|
#include <iostream>
|
|
|
|
int main()
|
|
{
|
|
YAML::Emitter out;
|
|
out << "foo";
|
|
|
|
std::cout << out.c_str() << "\n";
|
|
return 0;
|
|
}
|