valkyrie-ast 0.1.12

Strong typed abstract syntax tree of valkyrie language
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
`"string formatter \n\r {expr:args} \u{1234} "`

Aka. String Interpolation

| Escape Sequence | Meaning               |
|-----------------|-----------------------|
| `\n`            | Line Feed             |
| `\r`            | Carriage Return       |
| `\t`            | Horizontal Tab        |
| `\v`            | Vertical Tab          |
| `\0`            | Null                  |
| `\\`            | Backslash             |
| `\"`            | Double Quote          |
| `\'`            | Single Quote          |
| `\u{1234}`      | Unicode Character     |
| `\x12`          | Hexadecimal Character |
| `\o123`         | Octal Character       |
| `\b`            | Backspace             |