gogotanaka / Rubype

:dromedary_camel: Super simple, clean. Contracts for Ruby
http://gogotanaka.github.io/rubype.github.io/
377 stars 14 forks source link

Variable arguments #3

Open gogotanaka opened 9 years ago

gogotanaka commented 9 years ago

Like that.

def sum(char, *ary)
  ary.inject(:+)
end
typesig :sum, [String, [Numeric]] => Numeric