Left shift.
The left shift function takes the two numbers and left shift the bits of first argument by number of place specified by second argument. Excess bits shifted off to the left are discarded. Zero bits are shifted in from the right.
shl[x, y]
#<result> = shl[9, 2]
result: 36