dev
New Member
Posts: 20
|
Post by dev on Dec 16, 2005 8:59:07 GMT -5
has anyone used this yet?
I'm trying to write the chat into a textfile but I dont get this right ; ;
any hints?
|
|
|
Post by me3you2 on Dec 16, 2005 20:45:14 GMT -5
f = io.open("io.txt",'a') f:write("! test !" ) f:close()
all this will do is open a file called 'io.txt' and write '! test !' in it.
Hope this helps.
|
|
|
Post by X-Drop on Dec 16, 2005 21:24:18 GMT -5
Oh, snap. I like that! That has some pretty cool possiblities.
|
|
|
Post by me3you2 on Dec 16, 2005 22:23:05 GMT -5
|
|