>= function:

Compare two value and return true if the first is greater or eqauls than the second.

Examples:

  • running: (>= 1, 3) will give: false

  • running: (>= 1, 1) will give: true

  • running: (>= 31, 1) will give: true