Skip to content

Instantly share code, notes, and snippets.

@pingles
Created July 20, 2010 23:04
Show Gist options
  • Save pingles/483739 to your computer and use it in GitHub Desktop.
Save pingles/483739 to your computer and use it in GitHub Desktop.
Mandy.job "Word Count" do
map do |line|
line.split(' ').each do |word|
emit(word, 1)
end
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment