# File lib/facet/lisp.rb, line 124 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