# File lib/rantly.rb, line 9
def Rantly(n=1,&block)
  if n > 1
    Rantly.map(n,&block)
  else
    Rantly.value(&block)
  end
end