Skip to content

Instantly share code, notes, and snippets.

@usman88
Last active May 15, 2016 00:41
Show Gist options
  • Select an option

  • Save usman88/4ff8c9cb5df41101abb2f2d555fc94ff to your computer and use it in GitHub Desktop.

Select an option

Save usman88/4ff8c9cb5df41101abb2f2d555fc94ff to your computer and use it in GitHub Desktop.
My First Elm Program
import Html exposing (text)
apple = { color = "Red" }
pear = { color = "Green" }
whatFruit {color} =
if color == "Red" then
"It's red, and it must be an apple!"
else if color == "Green" then
"It's green, so it must be a pear!"
main =
text (whatFruit pear)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment