Parameter | Type | Description |
args | int[] | A list of ints |
Type | Description |
int | The result of the operation |
Performs the operation a | b | c ... between all elements in args and returns the result.
import agan
class game():
def create(self):
agan.log(agan.bitor([ 1, 2, 16, 128 ]))
return self
#
def update(self):
pass
#
def close(self):
pass