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

23 lines
163 B
Plaintext
Raw Normal View History

2022-02-03 02:20:50 +03:00
# 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
]
}