1
1
mirror of https://github.com/wader/fq.git synced 2024-12-01 19:12:34 +03:00
fq/doc/presentations/bts2022/jq3

23 lines
317 B
Plaintext
Raw Normal View History

2022-02-03 02:20:50 +03:00
# Generators and backtracking
> 1, (2, 3 | . * 2), 4
1
4
6
4
# Conditional, boolean operators and comparison
2022-02-03 02:20:50 +03:00
> if 1 == 2 and true then "a" else "b" end
"b"
# Reduce and foreach
> reduce (1,2,3) as $i (0; . + $i)
6
> foreach (1,2,3) as $i (0; . + $i; .)
1
3
6
# Bindings (variables)
> 1 as $a | 2 as $b | $a + $b
3