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

123456789101112
  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/identifier"
  8. require "chervil/ast/number"
  9. require "chervil/ast/string"
  10. end
  11. end