Last active
May 15, 2016 00:41
-
-
Save usman88/4ff8c9cb5df41101abb2f2d555fc94ff to your computer and use it in GitHub Desktop.
My First Elm Program
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
| 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