mirror of
https://github.com/wader/fq.git
synced 2024-11-23 09:56:07 +03:00
23 lines
163 B
Plaintext
23 lines
163 B
Plaintext
# Literals
|
|
> 123
|
|
123
|
|
|
|
> "abc"
|
|
"abc"
|
|
|
|
> [1,2,3]
|
|
[
|
|
1,
|
|
2,
|
|
3
|
|
]
|
|
|
|
> {a: (1+2+3), b: ["abc", false, null]}
|
|
{
|
|
"a": 6,
|
|
"b": [
|
|
"abc",
|
|
false,
|
|
null
|
|
]
|
|
} |