1
1
mirror of https://github.com/wader/fq.git synced 2024-11-23 18:56:52 +03:00
fq/doc/presentations/bts2022/jq3
2022-03-08 18:20:18 +01:00

23 lines
317 B
Plaintext

# Generators and backtracking
> 1, (2, 3 | . * 2), 4
1
4
6
4
# Conditional, boolean operators and comparsion
> 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