">=" function:

Compare two numbers and string 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: (">=" "1E300", "1E200") will give: true

  • running: (">=" 30, "1E200") will return nothing

  • running: (">=" "1E200", 30) will return nothing