[Next] [Previous] [Up] [Top] [Contents] [Index]
13. Expressions
The operators = (equal), != (not equal), < (less), <= (less or equal), > (greater), and >= (greater or equal) can be used to compare numerical values. The result is of type boolean.
= and != can also be used to compare strings. It is possible to use the wildcards ? (matches one character) and * (matches any number of characters) for string comparison.
res.num > 30
name != "Q*"
[Next] [Previous] [Up] [Top] [Contents] [Index]
Generated with Harlequin WebMaker