Chervil is a toy Lisp interpreter written in Ruby
Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

12345678910
  1. module Chervil
  2. module Core
  3. CORE = {
  4. "+" => Proc.new { |*args| args.inject(:+) },
  5. "-" => Proc.new { |*args| args.inject(:-) },
  6. "*" => Proc.new { |*args| args.inject(:*) },
  7. "/" => Proc.new { |*args| args.inject(:/) },
  8. }
  9. end
  10. end