Skip to content

Instantly share code, notes, and snippets.

@btedev
Created February 20, 2012 02:21
Show Gist options
  • Save btedev/1867313 to your computer and use it in GitHub Desktop.
Save btedev/1867313 to your computer and use it in GitHub Desktop.
# One-liner based on an image a friend sent in an email...
(1..9).inject("") { |s,i| s+=i.to_s; puts "#{s.to_i}*8+#{i} = #{s.to_i*8+i}".center(25); s }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment