A toy dynamic programming language 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.

null.rb 103B

123456789
  1. class AST::Null
  2. def ==(other)
  3. other.is_a?(AST::Null)
  4. end
  5. def execute(env)
  6. nil
  7. end
  8. end