# File lib/rantly/generator.rb, line 158
  def range(lo=nil,hi=nil)
    lo ||= INTEGER_MIN
    hi ||= INTEGER_MAX
    rand(hi+1-lo) + lo
  end