module Temple::Mixins::Dispatcher

def compile(exp)

def compile(exp)
  type, *args = exp
  if respond_to?("on_#{type}")
    send("on_#{type}", *args)
  else
    exp
  end
end