Greater Equal

Kalipso - Form - Expressions - Functions - Functions Descriptions - Operators - Greater Equal

This operator is used in <conditional> expressions. Use it to check if a value is greater than or equal to other. Symbol: >=

Examples

  • Example 1

10 >= 5 Result = FALSE

  • Example 2

5 >= 5 Result = TRUE

  • Example 3

5 >= 10 Result = FALSE

  • Example 4

"Kalipso" >= "Kalipsa" Result = TRUE

  • Example 5

"Kalipso" >= "Kalipso" Result = FALSE

  • Example 6

"kalipso" >= "Kalipso" Result = FALSE

  • Example 7

"Kalipsa" >= "Kalipso" Result = FALSE

Last updated