Returns a Scheme-style string representation of the Vector.
Vector
57 58 59
# File 'lib/runtime/data/vector.rb', line 57 def to_s '#(' + map { |cell| Heist.stringify(cell) }.join(' ') + ')' end