Answers for "lua make file"

Lua
3

how to save to a file lua

function saveHighScore(score)
    print("High score: "..tostring(score))
    local file,err = io.open("high_score.txt",'w')
    if file then
        file:write(tostring(score))
        file:close()
    else
        print("error:", err) -- not so hard?
    end
end
Posted by: Guest on November-26-2020

Browse Popular Code Answers by Language