Lua基礎語法以及SCITE編輯器UTF 8設定

2021-10-03 17:22:01 字數 504 閱讀 6903

初學lua

print

("hello world"

)print

("www.liuzhifeng.com"

)--單行注釋--[

[多行注釋--]

]--[[

預設狀態下,變數總認為是全域性的。

給乙個變數賦值後即建立了這個變數

刪除變數:將其賦值為nil--]

]b=10print

(b)b=nil

print

(b)--當變數為nil時,則變數不存在;當變數不為nil時,則這個變數即存在

--設定scite預設編碼格式utf-

8:options-

>open user options file-

>輸入

-- code.page=

65001

-- output.code.page=

65001

lua 基礎語法

print hello wc hahaha a 10 全域性變數 local b tostring a.2 區域性變數 dofile test.lua print type b local c nil local d wwe dad print string.sub d,2,3 獲取子串 lua從1...

Lua 基礎語法總結

第乙個 lua 程式 這是 lua 單行注釋的寫法 print start 多行注釋寫法 lua 區分大小寫 lua 的關鍵字 and break do else elseif end false for function if in local nil not or repeat return t...

Lua 簡單基礎語法

print hello world 表示注釋 print print表示控制台輸出 這樣表示多行注釋 小技巧 開頭處多加乙個 表示,取消注釋 1 變數的資料型別,取決於賦值的型別 2 多變數的同時賦值,型別也可以不一致 預設全域性變數,變數型別無需宣告 a 1 print a 輸出 1 local ...