# File lib/native_file_types/apple2/AppleText.rb, line 11
def to_text
  s=""
  contents.each_byte{|b| s+=Apple2.to_ascii(b) unless b==0}
  s.tr("\r","\n")
end