[Solved] writing to file with Lua
Posted: Sat Apr 24, 2010 7:22 pm
I am attempting to learn lua, can't find too many tutorials online, but I would like to write to a file
Code: Select all
io.write("What is your age: ")
age = io.read()
print ("You are " .. age .. " years old"); --now I would like to write this line to a file, how would I go about doing this?