You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

calculatrice.rb 141 B

2 years ago
12345678910
  1. class Calculatrice
  2. def push(n)
  3. @args ||= []
  4. @args << n
  5. end
  6. def additionner
  7. @args.inject(0) { |n, sum| sum + n }
  8. end
  9. end

No Description

Contributors (1)