Write a function, mul, that multiplies all numbers of the given list of numbers.
like:
print(mul([1, 2, 3])) 6 print(mul([0, 1, 2, 3])) 0 print(mul([2, 3, 4])) 24