while
Loop until condition false
while
loops until loops until condition is false.
Normally the conditional and executed code block are 2 separate parameters however you can call while
with just 1 parameter where the code block acts as both the conditional and the code to be ran.
Until true
while { condition } { code-block } -> <stdout>
while { code-block } -> <stdout>
Until false
!while { condition } { code-block } -> <stdout>
`` !while { code-block } -> <std
while
$i is less then 5
» let i=0; while { =i<5 } { let i=i+1; out $i }
1
2
3
4
5
» let i=0; while { let i=i+1; = i<5; out }
true
true
true
true
false
while
$i is NOT greater than or equal to 5
» let i=0; !while { =i>=5 } { let i=i+1; out $i }
1
2
3
4
5
» let i=0; while { let i=i+1; = i>=5; out }
true
true
true
true
false
while
!while
err
: Print a line to the STDERRfor
: A more familiar iteration loop to existing developersforeach
: Iterate through an arrayformap
: Iterate through a map or other collection of dataglobal
: Define a global variable and set it’s valuelet
: Evaluate a mathematical function and assign to variable (deprecated)out
: Print a string to the STDOUT with a trailing new line characterset
: Define a local variable and set it’s valueThis site's content is rebuilt automatically from murex's source code after each merge to the master
branch. Downloadable murex binaries are also built with the website.
Last built on Tue Jan 31 12:58:18 UTC 2023 against commit c6bc4d8c6bc4d8f96c958dcb16d78e66d89468aef288078.
Current version is which has been verified against 13941 tests cases.