-- JSRUN引擎2.0,支持多达30种语言在线运行,全仿真在线交互输入输出。
-- ----------- if 语法 ---------------------
-- if () then
-- elseif then
-- else
-- end
-- ----------- while ------------------------
-- while() do
-- end
-- ------------- until 类似do while ---------------------
-- repeat
-- until
-- ------------- for -------------------------
-- for i=起始值, 小于等于终止值, 步长可以省略 do
-- end
--------------- break ------------------
-- if i==5 then
-- break
-- end