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 304B

12345678910111213
  1. require "chervil"
  2. module Chervil
  3. module AST
  4. require "chervil/ast/application"
  5. require "chervil/ast/boolean"
  6. require "chervil/ast/definition"
  7. require "chervil/ast/function"
  8. require "chervil/ast/identifier"
  9. require "chervil/ast/number"
  10. require "chervil/ast/string"
  11. end
  12. end