1. 타입(Type)
루아의 변수 타입
print(type("Hello world:)) -- string
print(type(10.4.3)) -- number
print(type(print)) -- function
1) Nill -- 값없음
local a = null
2) Boolean (참 & 거짓)
local b = true -- 참
local c = false -- 거짓
3) String (문자열)
local s = "Lua"
locan n = "123" -- 따옴표 임으로 문자로 인식됩니다.
4) Number(숫자)
local n1 = 123
'Corona with Lua > Lua language' 카테고리의 다른 글
| 6. 반복문 (Loop) - Lua(루아) (0) | 2018.03.09 |
|---|---|
| 5. 조건문(Conditionals) - Lua(루아) (0) | 2018.03.09 |
| 4. 연산자 (Operator) - Lua(루아) (0) | 2018.03.09 |
| 2. 변수 (Variable) - Lua(루아) (0) | 2018.03.09 |
| 1. 기초지식 - Lua(루아) (0) | 2018.03.09 |