WARNING: change in syntax for for
in upcoming release: 6.3.x
#855
lmorg
announced in
Announcements
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
The
for
builtin is switching from parenthesises to curly braces:old syntax:
( ... ; ... ; ... )
new syntax:
{ ... ; ... ; ... }
This is due to the deprecation of
=
andlet
, and howfor
acted as a proxy for these builtins.The updated manual can be found at https://dev.murex.rocks/commands/for.html
This change is already in
develop
and will be pushed tomaster
as part of the 6.3.x release.Beta Was this translation helpful? Give feedback.
All reactions