# File lib/PascalFile.rb, line 19
        def to_s
                s=""
                @contents.each_byte{|b| s<<(b%0x80).chr.tr(0x0D.chr,"\n")}
                s
        end