# ge relational operator

The ge relational operator denotes a
greater than or equal condition between two elements.

**Synonyms:** >=

## Syntax

```
exp ge exp
```

## Example(s)

```
if date ge "6/1" then print "yes"
```

## See also

- [>= relational operator](https://d3codex.com/pickbasic-flashbasic/greater-than-equals-relational-operator/)

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