Main Menu

Bitwise Operators

Started by slayer93, September 21, 2008, 12:45:18 PM

Previous topic - Next topic

slayer93

Well I was working on my game today and found out I couldn't use any bitwise operators but I just wanted to make sure that I wasn't just doing something wrong or is there no support for it.

Just a quick test I did for it-
a=%0010 || %0011
print a

waitkey

kevin


a=%0010 | %0011
print a
sync
waitkey


slayer93

Thank you Kevin, it works now :)