A simple subclass of SexpProcessor that defines a pattern I commonly use: non-mutative and strict process that return assorted values; AKA, an interpreter.
# File lib/sexp_processor.rb, line 398 def initialize super self.expected = Object self.require_empty = false self.strict = true end