You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
niveditasonker opened this issue
Oct 13, 2020
· 1 comment
Labels
bugAny difference between this BrightScript implementation and RBI, or otherwise unexpected behaviorstdlibAffects the standard library included with this BrightScript implementation
Code for XOR fires error- Attempting to NOT non-boolean value
function xor(a as integer, b as integer) as integer
if a = 0 then return b
if b = 0 then return a
return ((a and not b) or (not a and b))
end function
The text was updated successfully, but these errors were encountered:
alimnios72
added
bug
Any difference between this BrightScript implementation and RBI, or otherwise unexpected behavior
stdlib
Affects the standard library included with this BrightScript implementation
labels
Oct 14, 2020
bugAny difference between this BrightScript implementation and RBI, or otherwise unexpected behaviorstdlibAffects the standard library included with this BrightScript implementation
Code for XOR fires error-
Attempting to NOT non-boolean value
The text was updated successfully, but these errors were encountered: