Loading

Paste #pckbcce5d

  1. $ lua
  2. Lua 5.3.3  Copyright (C) 1994-2016 Lua.org, PUC-Rio
  3. > i = 1
  4. > dir_fix = true
  5. > print(dirfix and i<2 or i>2)
  6. false
  7. > i=3
  8. > print(dirfix and i<2 or i>2)
  9. true
  10. > dir_fix = false
  11. > print(dirfix and i<2 or i>2)
  12. true
  13. >

Comments