Operators and Special Variables
- v1.9.0: Operators and Special Variables
- Added bitwise string operators.
- Added lvalue
substr
, lvaluevec
- Fix
%b
specifier insprintf
- Emulate Perl behaviour with unsigned integers in bitwise operators.
- Regex
m?pat?
match-once and thereset()
operator are implemented. - Regex
\G
and thepos
operator are implemented. - Regex
@-
,@+
,%+
,%-
special variables are implemented. - Regex
$`
,$&
,$'
special variables are implemented. - Regex performance comparable to Perl; optimized regex variables.
- Regex matching plain strings:
$var =~ "Test"
. - Added
__SUB__
keyword;readpipe
. - Added
&$sub
call syntax. - Added
local
dynamic variables. - Tests in
src/test/resources
are executed automatically.
Full Changelog: v1.8.0...v1.9.0