Skip to content

Instantly share code, notes, and snippets.

@matsubo
Created May 21, 2015 08:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matsubo/b2b89a9c662e25246652 to your computer and use it in GitHub Desktop.
Save matsubo/b2b89a9c662e25246652 to your computer and use it in GitHub Desktop.
#!/usr/bin/ruby
100.times do |i|
number_s = sprintf("%05d", i).to_s
begin
puts sprintf("%05d", number_s)
rescue => e
puts e
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment