📜  期待在while循环结束时得到<eof>lua - 任何代码示例

📅  最后修改于: 2022-03-11 14:55:56.540000             🧑  作者: Mango

代码示例1
-- "Expecting end on while loop got  lua"
-- Because you need to add an end to every clause, while, and function.
while true do
    print("Text")
end