Skip to content

Instantly share code, notes, and snippets.

@kalabiyau
Created December 5, 2012 19:34
Show Gist options
  • Save kalabiyau/4218787 to your computer and use it in GitHub Desktop.
Save kalabiyau/4218787 to your computer and use it in GitHub Desktop.
def count(num)
"".tap do |mem|
(0..num).each do |element|
mem << element.to_s
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment