class BOAST::Less

Public Class Methods

basic_usage(arg1, arg2) click to toggle source
# File lib/BOAST/Language/Operators.rb, line 138
def Less.basic_usage(arg1, arg2)
  return "#{arg1} < #{arg2}"
end
string(arg1, arg2, return_type) click to toggle source
# File lib/BOAST/Language/Operators.rb, line 134
def Less.string(arg1, arg2, return_type)
  return basic_usage(arg1, arg2)
end