mirror of
https://github.com/loot/yaml-cpp.git
synced 2026-07-27 14:13:42 -07:00
12 lines
215 B
YAML
12 lines
215 B
YAML
---
|
|
- "quoted scalar\twith a tab\nand a newline"
|
|
- 'This is Jesse''s single quote!'
|
|
- |
|
|
here's a literal:
|
|
#include <iostream>
|
|
|
|
int main()
|
|
{
|
|
std::cout << "Hello World!\n";
|
|
return 0;
|
|
} |