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

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

Examples

PRINT Lsl(11, 3)
<hr>88
PRINT Lsl(-11, 3)
<hr>-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