(lsh integer n_Bits)
The lsh function performs a logical bitwise shift of n bits on the integer.
Examples
: (lsh 1 1)
2
: (lsh 1 -1)
0
: (lsh 15 -1)
7