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

Any number of arguments (splat, *)

def sum(*numbers : Int32)
  puts typeof(numbers) # Tuple(Int32, Int32, Int32)
  numbers.sum
end

res = sum(2, 3, 4)
puts res # 9