| Newline is ASCII linefeed in UNIX. In Squeak, the Enter key generates ASCII 13 (CR), because Squeak was originally developed on a Macintosh and that's newline on that platform. You can generate that with String cr. FileDirectory slash is the platform specific file delimeter as a string. (FileDirectory pathNameDelimiter is the character itself.) Mark Guzdial |