Last active
August 29, 2015 14:14
-
-
Save AyaMorisawa/55316e4d8a5ea7c66405 to your computer and use it in GitHub Desktop.
Project Eular 001 LiveScript
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| global <<< require \prelude-ls | |
| [1 til 1000] |> (filter -> it % 3 == 0 || it % 5 == 0) |> sum |> console.log | |
| /* | |
| $ lsc project-eular-001.ls | |
| 233168 | |
| */ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment