The >= operator determines if the first expression is greater-than-or-equal the second expression.
Code: <% 123 >= 456 %> <% "a" >= "A" %>
Output: False True