Multiply two integers together without *

Ruby

Multiply two integers together without the use of the * operator.

Bonus points if using bitwise operators.

Create a method called mult_int(a, b) that accepts two params which will be integers.

def mult_int(a, b) end
<