Chervil is a toy Lisp interpreter written in Ruby
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ast.rb 371B

123456789101112131415
  1. require "chervil"
  2. module Chervil
  3. module AST
  4. require "chervil/ast/boolean"
  5. require "chervil/ast/conditional"
  6. require "chervil/ast/definition"
  7. require "chervil/ast/function"
  8. require "chervil/ast/identifier"
  9. require "chervil/ast/list"
  10. require "chervil/ast/number"
  11. require "chervil/ast/quotation"
  12. require "chervil/ast/string"
  13. end
  14. end