Hey there everyone, long time no post...

I have a simple one here, (simple as far as I can tell)

I want to write (print) to a file, so far I have simply;

Code:
OPEN "\LOGFILE.LOG" FOR APPEND AS #1
DO
    '...bunch of stuff done here
    PRINT #1, CHR(ASCIICHAR)
LOOP
This repeats several times over and over throughout the execution, and the file is afterwards structured as thus;

H
i

t
h
e
r
e

This is a problem, and I would much rather the characters be sequenced horizontally without the line jump between each...

I dont know how I can get around this, any ideas would be GRRRRREATLY appreciated

Thanks