function _if(bool, func1, func2) if bool then return func1() else return func2() end end The above piece of code returns func1() if bool is true and func2() ...
確定! 回上一頁