*Challenges
Oops. Stupid kindle fire actually didn't autocorrect that.
No, stupid you didn't automatically correct that
New challenge -> Auto correct
Try making a message logger, all you need to study is FileObjects.
Won't work. Badspot broke file objects for now.
function appendToFile( %file, %line ){ %obj = new fileObject(); %obj.openForRead( %file ); while ( !%obj.isEOF() ) { %content = %content @ ( strLen( %content ) ? "\r\n" : "" ) @ %obj.readLine(); } %obj.close(); %obj.openForWrite( %file ); %obj.writeLine( %content ); %obj.writeLine( %line ); %obj.close(); %obj.delete();}