trphoenix
2018-11-14 86910df0578149bf09eb93cf00cc6e7ac83fa3b7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
[
 {
  "backspace": "\b",
  "tab": "\t",
  "new line": "\n",
  "vertical tab": "\u000b",
  "form feed": "\r",
  "carriage return": "\r",
  "delete": "\u007F"
 },
 "simple string",
 "'string with single quotes'",
 "\"string with double quotes\"",
 "'With singles and \"doubles\"'",
 "dollar $igns",
 "'single quotes and dollor $ig$'",
 "${'nice!'}",
 "\"\"hello\"\"",
 "\"\"$double quotes and dollar signs\"\"",
 "$scary with 'single quotes' and triple-doubles \"\"\"oh no!",
 "Dollar signs: $ vs \\$ vs \\\\$",
 "Slashes \\nice slash\\",
 "slashes \\ and dollars $ with white \n space",
 "'''triple quoted strings should be\nfine!'''",
 "\"\"\"as with triple-double-quotes\"\"\"",
 "\"\"\"as with triple-double-quotes even when 'mixed'\"\"\"",
 null,
 true,
 false,
 5,
 5.5351,
 -5.5,
 {},
 {
  "null": null,
  "int": 42,
  "double": 42.0,
  "string": "string",
  "list": [],
  "bool": true
 }
]