module Tins::ProcPrelude

def rotate(n = 1)

def rotate(n = 1)
  lambda { |*list| list.rotate(n) }
end