🌈 搜索
📅  最后修改于: 2022-03-11 14:54:54.242000             🧑  作者: Mango
-- Prints all square numbers up to 100 c = 1 repeat print(c .. " squared is " .. c*c) c = c + 1 until c == 101