Skip to content

Instantly share code, notes, and snippets.

@djleonskennedy
Created September 8, 2016 11:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save djleonskennedy/f97a2d2676ef187321e14cf3a864f537 to your computer and use it in GitHub Desktop.
Save djleonskennedy/f97a2d2676ef187321e14cf3a864f537 to your computer and use it in GitHub Desktop.
import Html exposing (text)
main =
let
(x, y, z) =
tuple
in
text <| toString <| x + y + z
tuple : (Int, Int, Int)
tuple =
(1, 2, 3)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment