NAME
`>= - is greater than or equal to?

SYNTAX
a >= b
or
int `>=(int|float|string a,int|float|string b)

DESCRIPTION
This operator compares two values and returns 1 if the first one is greater than or equal to the second one.

KEYWORDS
operators

SEE ALSO
`!=, `==, `>, `< and `<=