上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 37 下一页
摘要: rt 阅读全文
posted @ 2020-09-29 20:01 流星曳尾 阅读(947) 评论(0) 推荐(0) 编辑
摘要: --module.lua module = {} module.num = 13 module.f1 = function (a,b) return a + bend --test.lua require('module') print(module.f1(5,6)) --11 阅读全文
posted @ 2020-09-29 15:09 流星曳尾 阅读(279) 评论(0) 推荐(0) 编辑
摘要: tab = {'sss',123,'sswg'} print(table.concat(tab,',')) --sss,123,sswg 阅读全文
posted @ 2020-09-29 14:57 流星曳尾 阅读(439) 评论(0) 推荐(0) 编辑
摘要: a = {key = 'ssss',1,2,3} for i=1,5 do print(a[i])end --[[123nilnil--]] print() for i,v in ipairs(a) do print(v)end --[[123--]] print() for k,v in pair 阅读全文
posted @ 2020-09-29 14:34 流星曳尾 阅读(108) 评论(0) 推荐(0) 编辑
摘要: print('aaa\'sss\'bbb') --aaa'sss'bbb 阅读全文
posted @ 2020-09-29 14:13 流星曳尾 阅读(1019) 评论(0) 推荐(0) 编辑
摘要: a = 3 if not a == 4 then print('1')else print('2')end --2 阅读全文
posted @ 2020-09-29 13:58 流星曳尾 阅读(1020) 评论(0) 推荐(0) 编辑
摘要: rt 阅读全文
posted @ 2020-09-29 13:51 流星曳尾 阅读(7547) 评论(0) 推荐(0) 编辑
摘要: function sum(...) res = 0 tab = {...} for i,v in ipairs(tab) do res = res + v end return resend print(sum(2,65,3))--70 阅读全文
posted @ 2020-09-29 13:41 流星曳尾 阅读(1081) 评论(0) 推荐(0) 编辑
摘要: rt 阅读全文
posted @ 2020-09-29 13:28 流星曳尾 阅读(764) 评论(0) 推荐(0) 编辑
摘要: ::label:: --与goto一起使用,可以goto label 阅读全文
posted @ 2020-09-29 13:21 流星曳尾 阅读(369) 评论(0) 推荐(0) 编辑
上一页 1 ··· 11 12 13 14 15 16 17 18 19 ··· 37 下一页