![]() ![]() ![]() ![]() | Table Of Contents | Index |
MarxMenu interpretation is left to right and doesn't have any operator precedence. You can control the order of evaluation by using parentheses.
Examples:Statements are limited to one line and lines are limited to 200 characters.2 + 3 * 4 ;returns 20 2 + (3 * 4) ;returns 14
if A > 4 or B < 6 then ... ;error if (A > 4) or (B < 6) then ... ;correct
![]() ![]() ![]() ![]() | Table Of Contents | Index |
|