mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-09 12:41:17 +00:00
14 lines
211 B
C++
14 lines
211 B
C++
#include "yaml-cpp/yaml.h"
|
|
#include <iostream>
|
|
|
|
int main()
|
|
{
|
|
YAML::Emitter out;
|
|
out << YAML::BeginSeq;
|
|
out << ':';
|
|
out << YAML::EndSeq;
|
|
|
|
std::cout << out.c_str() << "\n";
|
|
return 0;
|
|
}
|