반응형
[lua] Lua 기본 문법
참고 사이트> https://www.lua.org/pil/3.2.html
- 비교연산자(Relational Operators)
< > <= >= == ~=
- 산술연산자(Arithmetic Operators)
`+
´ (addition),
`-
´ (subtraction),
`*
´ (multiplication),
`/
´ (division),
the unary `-
´ (negation)
- 논리연산자(Logical Operators)
not
and/or 는 "결과가 도출되는 Argment"를 Return한다.
and : 첫 False
(1) First Argment ==<True> => Return<Second Argment>
(2) First Argment ==<False> => Return<First Argment>
or : 첫 True
(3) First Argment ==<True> => Return<First Argment>
(4) First Argment ==<False> => Return<Second Argment>
(1) print(4 and 5) --> 5 (2) print(nil and 13) --> nil (2) print(false and 13) --> false (3) print(4 or 5) --> 4 (4) print(false or 5) --> 5
print(not nil) --> true
print(not false) --> true
print(not 0) --> false
print(not not nil) --> false
a ? b : c
- 문자 결합연산자(Concatenation)
...
print("Hello " .. "World") --> Hello World print(0 .. 1) --> 01
반응형
'프로그램... > 프로...WEB' 카테고리의 다른 글
[CSS] 버튼 (0) | 2018.11.23 |
---|---|
[tistory] skin중 일부 style 변경 (0) | 2018.09.14 |
[WEB 개발자] WEB 개발 Roadmap (0) | 2017.10.18 |
티스토리 티에디션 설정/해제 (0) | 2014.10.10 |
티스토리 티에디션-썸네일 안보이는 현상 (0) | 2014.10.10 |