Skip to content

Latest commit

 

History

History
10 lines (9 loc) · 209 Bytes

8 kyu - Function 3 - multiplying two numbers.md

File metadata and controls

10 lines (9 loc) · 209 Bytes

Task

This function has to be called multiply and needs to take two numbers as arguments, and has to return the multiplication of the two arguments.

My solution

def multiply(a, b)
  a * b
end