<div dir="ltr">I ran this program and nothing happened so I added self halts and learned it can't even read the input file!  Yet the File List tool reads it.  Such dichotomy in behavior might be covered by a preference?  I know MS Notepad, the simplest editor now allows one to store a file in ones's choice of formats.  Does Squeak have a simple choice for input treatments that works in Win10?<div><br></div><div><div>do</div><div><span style="white-space:pre">   </span>"Read a Bible file, reformat for beter readability and html standards."</div><div><span style="white-space:pre">             </span>| inPath ootPath inFIle outFile line words |</div><div><span style="white-space:pre">  </span>inPath := 'C:\Users\Owner\Desktop\Website\Jesus Words\Matthew.html'.</div><div><span style="white-space:pre">  </span>ootPath := 'C:\Users\Owner\Desktop\Website\Jesus Words\Matthew2.html'.</div><div><span style="white-space:pre">        </span>inFIle := FileStream oldFileNamed: inPath.</div><div><span style="white-space:pre">    </span>outFile := FileStream newFileNamed: ootPath.</div><div><span style="white-space:pre">  </span>self halt.</div><div><span style="white-space:pre">    </span>[(line := inFIle nextLine) notNil</div><div><span style="white-space:pre">     </span>whileTrue:[</div><div><span style="white-space:pre">                   </span>words := line substrings.</div><div><span style="white-space:pre">                     </span>self halt.</div><div><span style="white-space:pre">                    </span>words size >0 ifTrue:[</div><div><span style="white-space:pre">                     </span>outFile nextPutAll: line, '<br>'; cr; lf].</div><div><span style="white-space:pre">              </span>]].</div><div><span style="white-space:pre">   </span>inFIle close.</div><div><span style="white-space:pre"> </span>outFile close.</div></div><div><br></div><div><br></div><div>It is my observation that Squeak is the last gasp uttered by a mouse when it fears death.  It is not a normal sound they make unless they are being eaten by a Python!   I hope the Python people don't release code that simply doesn't work.</div></div>