summaryrefslogtreecommitdiffstats
path: root/file.lua
blob: 6e55b3f84121f1f5515bb31784006e38847e3c84 (plain)
1
2
3
4
5
6
7
8
9
10
-- writing to a file --
fd = io.open("my.txt", "a")
io.output(fd)
io.write("a hello message from Lua, bro!\n")
io.close()

for line in io.lines("my.txt") do
    print(line)
end