<= Less Than or Equals

Symbol

Symbol

Preferred

5.0

<= checks that the left parameter is less than or equal to the right parameter. It compares either numbers or strings (which are checked alphabetically).

Note: If the parameter on the right hand side of the symbol is a negative literal it should be surrounded by parentheses. For example, (4 <= (-1)).

[If: Left_Parameter <= Right_Parameter]
  ...
[/If]

<?LassoScript
  If: Left_Parameter <= Right_Parameter;
  ...
  /If;
?>