Skip to content

Instantly share code, notes, and snippets.

@AyaMorisawa
Created April 26, 2015 18:09
Show Gist options
  • Save AyaMorisawa/8ab5ed00ea1cd0a158e2 to your computer and use it in GitHub Desktop.
Save AyaMorisawa/8ab5ed00ea1cd0a158e2 to your computer and use it in GitHub Desktop.
import Graphics.Element exposing (show)
import List exposing (product)
factorial n = product [1..n]
main = show <| factorial 10 -- 3628800
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment