mirror of
https://github.com/jbeder/yaml-cpp.git
synced 2025-09-09 20:51:16 +00: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;
|
|
} |