This is a read-only snapshot of the ComputerCraft forums, taken in April 2020.
Cing's profile picture

change a boolean

Started by Cing, 25 September 2015 - 01:36 PM
Cing #1
Posted 25 September 2015 - 03:36 PM
Hello

I don't know anymore how to write this short.

local boolean = true
if boolean then
   boolean == false
else
   boolean == true
end
KingofGamesYami #2
Posted 25 September 2015 - 03:37 PM

local b = true
b = not b
Cing #3
Posted 25 September 2015 - 03:49 PM
ahhhhh
thanks man