module Dry::Logic::Predicates::Methods

def gteq?(num, input)

def gteq?(num, input)
  !lt?(num, input)
end