Value = Lsl ( Number , Bit AS Integer )
Returns Number shifted to the left by Bit bits. The sign is ignored.
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. |