Last active
January 2, 2018 20:58
-
-
Save joanllenas/193974186e542d0f442adc47dcd66a31 to your computer and use it in GitHub Desktop.
Ejemplo 1 del post "Un sorbo de TEA"
This file contains 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
module Main exposing (..) | |
import Html exposing (..) | |
sayHello user = | |
"Hello " ++ user.name ++ "!" | |
userRecord = | |
{ id = 1, name = "Joan" } | |
main = | |
text (sayHello userRecord) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment