A toy dynamic programming language written in Ruby
選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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