Files
yaml-cpp/test.yaml
beder 4de9cb48a5 Moved scalar scanning-related parameters to a struct.
Renamed the valid/possible tokens to a single variable status with enums valid, invalid, and unverified.
2008-06-29 17:39:33 +00:00

14 lines
247 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;
}
- key1: value1
key2: value2