Lua学习笔记
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Lua学习笔记相关的知识,希望对你有一定的参考价值。
1. Lua -i main.lua
-i 进入交互模式
-l 加载一个库
-e “lua code” 直接在命令行执行lua code
2. 注释
-- This is a line comment --[[ This block show how to block commenting some lines ]]--
3. 数据数型
There are eight basic types in Lua: nil, boolean, number, string, function, userdata, thread, and table.
以上是关于Lua学习笔记的主要内容,如果未能解决你的问题,请参考以下文章