Lua 스 크 립 트 문법 설명 (수정)

2607 단어 lua
원문
 
몇 개 를 골라내다
.    

    and, or, not

      ,and   or  C       。

       ,    , Lua ,  false nil    false,          true,0  true!

    and   or       true false,            。

    a and b:  a false,   a;    b

    a or b:   a  true,   a;    b



         :

     print(4 and 5) --   5

     print(nil and 13) --   nil

     print(false and 13) --   false

     print(4 or 5) --   4

     print(false or 5) --   5





     Lua         ,           。

          C      :x == a? b : c, Lua ,    :x == a and b or c。

           : x = x or v,    :if not x then x = v end

좋은 웹페이지 즐겨찾기