shl
Binary left shift,
this command work on the binary representation of
number
, it shift bits by the indicated
amount
Syntax:
result
=
number
shl
amount
Example:
for n=1 to 8
print 1
shl
n
next