">" function:

Compare two numbers as string and return true if the first is greater than the second.

Examples:

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

  • running: (">" "1", "1") will give: false

  • running: (">" "1E+400", "1E+395") will give: true

  • running: (">" "1E+400", 1) will return nothing

  • running: (">" 1, "1E+400") will return nothing