Home / lang / lsl 
Lsl
Syntax
Value = Lsl ( Number , Bit AS Integer )

Returns Number shifted to the left by Bit bits. The sign is ignored.

Example
PRINT Lsl(11, 3)

88
Example
PRINT Lsl(-11, 3)

-88

It seems that there is no difference between this function and Shl. So if you find one, tell us.


See also
Bits Manipulation Functions  Logical Operators