tremor-script 0.12.4

Tremor Script Interpreter
1
2
3
4
5
6
7
8
9
10
### Signed integer constants

## Max signed value
const max = 9223372036854775807;

## Minimal signed value
##
# see https://github.com/tremor-rs/tremor-runtime/issues/127
# note the lexer is limited in how we can represent min
const min = -9223372036854775808;