diff options
author | andys8 <andys8@users.noreply.github.com> | 2017-12-23 11:57:45 +0100 |
---|---|---|
committer | andys8 <andys8@users.noreply.github.com> | 2017-12-23 11:57:45 +0100 |
commit | c52ae61127b9b50f39e45876c672ed73ce4e2125 (patch) | |
tree | 1dc328303a9e1c2f620d400282ec11973814699f /pt-br | |
parent | 70a36c9bd970b928adde06afb2bd69f6ba8e5d5c (diff) |
[elm] Update code to access tuples
Diffstat (limited to 'pt-br')
-rw-r--r-- | pt-br/elm-pt.html.markdown | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/pt-br/elm-pt.html.markdown b/pt-br/elm-pt.html.markdown index 78a4f1b7..d2469a93 100644 --- a/pt-br/elm-pt.html.markdown +++ b/pt-br/elm-pt.html.markdown @@ -76,8 +76,8 @@ List.head [] -- Nothing -- Acesse os elementos de um par com as funções first e second. -- (Este é um atalho; nós iremos para o "caminho real" em breve.) -fst ("elm", 42) -- "elm" -snd ("elm", 42) -- 42 +Tuple.first ("elm", 42) -- "elm" +Tuple.second ("elm", 42) -- 42 -- Uma tupla vazia ou "unidade" às vezes é utilizada como um placeholder. -- É o único valor de seu tipo, também chamado de "Unit". |