Skip to content

Instantly share code, notes, and snippets.

@takeshik
Created October 12, 2011 15:33
Show Gist options
  • Save takeshik/1281537 to your computer and use it in GitHub Desktop.
Save takeshik/1281537 to your computer and use it in GitHub Desktop.
Enumerable.(Range 0 100)
.(Select {
(== (% $0 15) 0).(cond
"Fizz Buzz"
(== (% $0 5) 0).(cond
"Fizz"
(== (% $0 3) 0).(cond
"Buzz"
$0.(ToString)
)
)
)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment