1
0
Fork 0
mirror of https://github.com/Reuh/anselme.git synced 2025-10-29 09:39:31 +00:00
This commit is contained in:
Étienne Fildadut 2024-01-03 13:49:24 +01:00
parent 4c76ef5f96
commit 12c32bb8a2
4 changed files with 6 additions and 6 deletions

View file

@ -15,7 +15,7 @@
--
-- -- read an anselme script file
-- local f = assert(io.open("script.ans"))
-- local script = anselme.parse(f:read("*a"), "script.ans")
-- local script = anselme.parse(f:read("a"), "script.ans")
-- f:close()
--
-- -- load the script in a new branch
@ -33,7 +33,7 @@
-- for i, l in ipairs(data) do
-- print(("%s> %s"):format(i, l:format(run_state)))
-- end
-- local choice = tonumber(io.read("*l"))
-- local choice = tonumber(io.read("l"))
-- data:choose(choice)
-- elseif e == "return" then
-- run_state:merge()