1
1
mirror of https://github.com/wader/fq.git synced 2024-10-27 20:27:26 +03:00
fq/doc/presentations/bts2022/jq1
2022-03-08 18:20:18 +01:00

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
]
}