Skip to content

Latest commit

 

History

History
17 lines (14 loc) · 246 Bytes

multiply.md

File metadata and controls

17 lines (14 loc) · 246 Bytes

Description

This code does not execute properly. Try to figure out why.

def multiply(a b)
  a * b
end

My Solution

def multiply(a, b)
  a * b
end