module Tins::ProcPrelude

def const(konst = nil, &my_proc)

def const(konst = nil, &my_proc)
  konst ||= my_proc.call
  lambda { |*_| konst }
end