Or operator

From Legacy Roblox Wiki
Revision as of 19:04, 9 July 2011 by >Flurite (New page: soul = true food = false try = false if soul == true or food == true or try == true then -- If any of the three comparisons are met, then continue with the code block print 'soul is a...)
Jump to navigationJump to search

soul = true food = false try = false

if soul == true or food == true or try == true then -- If any of the three comparisons are met, then continue with the code block

   print 'soul is always true'

end


> soul is always true