Keyboard shortcuts

Press or to navigate between chapters

Press S or / to search in the book

Press ? to show this help

Press Esc to hide this help

Function with a star example

def mysum(*numbers)
  sum = 0
  numbers.each do | number |
    sum += number
  end

  return sum
end

puts mysum()
puts mysum(42)
puts mysum(2, 3)
puts mysum(1, 7, 8)