Skip to content

Instantly share code, notes, and snippets.

@douglasjarquin
Last active December 25, 2015 15:29
Show Gist options
  • Save douglasjarquin/6998493 to your computer and use it in GitHub Desktop.
Save douglasjarquin/6998493 to your computer and use it in GitHub Desktop.
Code Kata for Oct 15th
#!/usr/bin/env ruby
require 'prime'
the_numbers = Hash.new
number_injection = Proc.new &(->(number) { the_numbers[number] = 'douglas' } )
Prime.first(10).each &number_injection
puts the_numbers
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment