Guest User

Untitled

a guest
Apr 20th, 2018
69
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. class Recursor
  2. def self.rec_add(i = 0)
  3. i > 100 ? 0 : i + rec_add(i + 1)
  4. end
  5. end
  6.  
  7. puts Recursor.rec_add
Add Comment
Please, Sign In to add comment