1
1
mirror of https://github.com/wader/fq.git synced 2024-12-27 15:42:07 +03:00
fq/pkg/interp/testdata/repl.fqtest

27 lines
387 B
Plaintext
Raw Normal View History

2021-08-14 20:50:17 +03:00
$ fq -i
null> 1+1
2
null> (
error: src:1:2: unexpected token <EOF>
null> abc
error: src:1:0: function not defined: abc/0
null> 1+"a"
error: cannot add: number (1) and string ("a")
null> 1 | repl
> number> .+1
2
> number> ^D
null> [1,2,3] | repl({}; .[])
> number, ...> .
1
2
3
> number, ...> ^D
null> [] | repl({}; .[])
> empty> 1
> empty> ^D
null> ^D
$ fq -i 'empty'
empty> 1
empty> ^D