class Opal::Sexp

def ==(other)

def ==(other)
  if other.is_a? Sexp
    @array == other.array
  else
    @array == other
  end
end