# File lib/facets/more/lisp.rb, line 114 def repr case @second when DottedPair then @first.to_s + ' ' + @second.repr when nil then @first.to_s else @first.to_s + ' . ' + @second.to_s end end