| 1 | BINARY_NUMBER=0b1010 |
| 2 | BOOL_ON=on |
| 3 | BOOL_TRUE=true |
| 4 | BOOL_YES=yes |
| 5 | DECIMAL_NUMBER=123.456 |
| 6 | DOUBLE_QUOTE_ESCAPES=Contains "quotes" and \backslashes\ and |
| 7 | newlines |
| 8 | FOLDED_MULTILINE=This is a folded style that should become a single line. |
| 9 | |
| 10 | HEX_NUMBER=0xFF |
| 11 | LITERAL_MULTILINE=Line one |
| 12 | Line two with spaces |
| 13 | Line three |
| 14 | |
| 15 | MESSAGE=test message |
| 16 | NULL_VALUE=null |
| 17 | OCTAL_NUMBER=0o755 |
| 18 | SCIENTIFIC_NOTATION=1.23e4 |
| 19 | SINGLE_QUOTE_MULTILINE=Single quoted with newline |
| 20 | TILDE_NULL=~ |
| 21 |