Skip to content

Instantly share code, notes, and snippets.

@itsbth
Created December 15, 2014 01:38
Show Gist options
  • Save itsbth/357b4a097ac1e70dd503 to your computer and use it in GitHub Desktop.
Save itsbth/357b4a097ac1e70dd503 to your computer and use it in GitHub Desktop.
(import [sys [stdin]]
[collections [Counter]]
[re [findall]])
(setv words (-> (findall "(\w+(?:'\w+)?)"
(.read stdin))
(Counter)))
(print words)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment