Contents
Syntax
The syntax for
==(params)
@==(params)
Description
Note: It is typically faster to use exprtk for relational operators, plus the syntax is nicer.
f++ example
Example of
- for(int i=0; ; i+=1)
- {
- if(==(i, 10))
- break
- console("i: ", i)
- }
n++ example
Example of
- @for(int i=0; ; i+=1)
- {
- @if(==(i, 10))
- @break
- @console("i: ", i)
- }