Releases: ivan-tkatchev/tab
Releases · ivan-tkatchev/tab
9.2
9.1
-
Added the
-pcommand line option.Expressions from
-pcome first, then expressions from-f, and finally those from the command line.
If-pis set, the default prelude will be overwritten. (The default prelude isdef $ index.@)
9.0
- Added string interpolation with
`${...}`syntax. - Defined the
$function to beindex.@by default. (For easier indexing of arrays and tuples.) - Added the
unflattenfunction. - Expanded debug output when the
-vvcommand-line option is used. - Added another variant for the
gluefunction. - Fixed parsing precedence for
$.
8.0
- Added the implicit function call syntax using
$.$ais equivalent to$(@, a); the function$must be first defined. - Added a two-argument version of
if. - Added syntactic sugar for filtering sequences;
[/ a]is equivalent to[try if(a, @)].