Skip to content

Instantly share code, notes, and snippets.

@fakestarbaby
Created December 12, 2013 05:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save fakestarbaby/7923747 to your computer and use it in GitHub Desktop.
Save fakestarbaby/7923747 to your computer and use it in GitHub Desktop.
Lua で boolean を反転させる ref: http://qiita.com/fakestarbaby/items/2f289a0e32c17f6f8624
true
false
local flg = true
print(flg)
print(not(flg))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment