Value = Lsl ( Number , Bit AS Integer )
Returns Number shifted to the left by Bit bits. The sign is ignored.
PRINT Lsl(11, 3) 88
PRINT Lsl(-11, 3) -88