while
- Command ReferenceLoop 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 Fri May 19 22:45:48 UTC 2023 against commit 54b5f6754b5f67b250bbf7353e83c42ed187802584c3ae3.
Current version is 4.1.6140 which has been verified against 14045 tests cases.