# le relational operator

The le relational operator represents
the less than or equal to (<=) condition.

**Synonyms:** <=

## Syntax

```
exp le exp
```

## Example(s)

```
if x le 10 then print "Less than 10 is the result"
```

## See also

- [<= relational operator](https://d3codex.com/pickbasic-flashbasic/less-than-equals-relational-operator/)
- [Numeric expressions](https://d3codex.com/pickbasic-flashbasic/numeric-expressions/)
- [Relational operators](https://d3codex.com/pickbasic-flashbasic/relational-operators/)

---
Source: https://d3codex.com/pickbasic-flashbasic/le-relational-operator/ - part of the D3Codex reference.
