Parameter | Type | Description |
lhs | int | The left hand side of the operation |
rhs | int | The right hand side of the operation |
Type | Description |
int | The result of the operation |
Performs the operation a << b and returns the result.
import agan
class game():
def create(self):
agan.log(agan.bitshl(1, 4))
return self
#
def update(self):
pass
#
def close(self):
pass