Renamed the valid/possible tokens to a single variable status with enums valid, invalid, and unverified.
14 lines
247 B
YAML
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 |