mirror of
https://github.com/nushell/nushell.git
synced 2024-11-22 16:33:37 +01:00
55 lines
1.0 KiB
JSON
55 lines
1.0 KiB
JSON
|
{
|
||
|
"text1": "This is a valid string value.",
|
||
|
"text2": "a \\ is just a \\",
|
||
|
"text3": "You need quotes\tfor escapes",
|
||
|
"text4a": " untrimmed ",
|
||
|
"text4b": " untrimmed",
|
||
|
"text4c": "untrimmed ",
|
||
|
"multiline1": "first line\n indented line\nlast line",
|
||
|
"multiline2": "first line\n indented line\nlast line",
|
||
|
"multiline3": "first line\n indented line\nlast line\n",
|
||
|
"foo1a": "asdf\\\"'a\\s\\w",
|
||
|
"foo1b": "asdf\\\"'a\\s\\w",
|
||
|
"foo1c": "asdf\\\"'a\\s\\w",
|
||
|
"foo2a": "\"asdf\"",
|
||
|
"foo2b": "\"asdf\"",
|
||
|
"foo3a": "asdf'''",
|
||
|
"foo3b": "'''asdf",
|
||
|
"foo4a": "asdf'''\nasdf",
|
||
|
"foo4b": "asdf\n'''asdf",
|
||
|
"arr": [
|
||
|
"one",
|
||
|
"two",
|
||
|
"three",
|
||
|
"four"
|
||
|
],
|
||
|
"not": {
|
||
|
"number": 5,
|
||
|
"negative": -4.2,
|
||
|
"yes": true,
|
||
|
"no": false,
|
||
|
"null": null,
|
||
|
"array": [
|
||
|
1,
|
||
|
2,
|
||
|
3,
|
||
|
4,
|
||
|
5,
|
||
|
6,
|
||
|
7,
|
||
|
8,
|
||
|
9,
|
||
|
0,
|
||
|
-1,
|
||
|
0.5
|
||
|
]
|
||
|
},
|
||
|
"special": {
|
||
|
"true": "true",
|
||
|
"false": "false",
|
||
|
"null": "null",
|
||
|
"one": "1",
|
||
|
"two": "2",
|
||
|
"minus": "-3"
|
||
|
}
|
||
|
}
|