Difference between revisions of "Manual:DIL Manual/Operators"
Jump to navigation
Jump to search
(XML import) |
(XML import of LLM wiki pages) |
| (One intermediate revision by one other user not shown) | |
(No difference)
| |
Latest revision as of 10:41, 4 December 2025
Operators:
DIL features many other operators. For integers, '<', '>', '<=', '>=', '!=' '==' signify less than, greater than, less or equal, greater or equal, not equal, and equality operators. Furthermore, you can compare strings with '==' or '$=' for equality test, and '!=' for non equality. Pointers may also use '==' and '!=' and you may force DIL to compare pointers, even for strings with the '#=' pointer-equality operator. The '$=' and '#=' is considered obsolete, and only used for backward compatibility.
---~---~---~---~---~---~---~---~---