[Lua] 조건문 정리
■ 조건문 1. if 조건식 then ~ end 조건식에 부합할 경우 then 과 end 사이에 작업 실행 local a = 1 if a == 1 then print("a 는 1 이다.") end 결과 : a 는 1 이다. 2. if 조건식 then ~ else ~ end 조건식에 부합할 경우 then 과 else 사이에 작업 실행 부합하지 않을 경우 else 와 end 사이에 작업 진행 local a = 1 if a == 1 then print("a 는 1 이다.") else print("a 는 1 이 아니다.") end 결과 : a 는 1 이다. 3. if 조건식 then ~ elseif 조건식 ~ then ~ else ~ end * 작업 순서 1) if 조건식 : 참일 경우 then ~ elseif..
2021.12.02