脚本/LUA
mrandexe
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
LUA输入输出
<br />s = io.read() print(s) n = io.read("*number") print(n)原创 2011-05-30 15:34:00 · 8112 阅读 · 0 评论 -
LUA基本类型
<br />--[[ file:a.lua --]] print(type("hello,lua!")) print(type("100")) print(type(100)) print(type(100.00)) print(type(true)) print(type(nil)) print(type(print))<br /> <br />输出结果<br />>lua -e "io.stdout:setvbuf 'no'" "a.lua" string string num原创 2011-05-30 15:27:00 · 899 阅读 · 0 评论
分享