Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
*
handle = FOPEN("Temp.txt",2)
*
* Go to the end of the file.
length = FSEEK(handle, 0, 2)
** write to the file (adding a crlf)
FWRITE(handle,"new Line"+chr(13)+chr(10))
** close it
FCLOSE(handle)