mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2024-12-29 18:23:08 +03:00
Merge pull request #3507 from cjcbusatto/master
[coffeescript/pt-br] Fix typos and layout
This commit is contained in:
commit
06a5fd28ab
@ -3,6 +3,7 @@ language: coffeescript
|
||||
contributors:
|
||||
- ["Tenor Biel", "http://github.com/L8D"]
|
||||
- ["Xavier Yao", "http://github.com/xavieryao"]
|
||||
- ["Claudio Busatto", "http://github.com/cjcbusatto"]
|
||||
translators:
|
||||
- ["Miguel Araújo", "https://github.com/miguelarauj1o"]
|
||||
lang: pt-br
|
||||
@ -31,24 +32,24 @@ Você deveria entender mais de semântica de JavaScript antes de continuar...
|
||||
###
|
||||
|
||||
# Tarefa:
|
||||
numero = 42 #=> número var = 42;
|
||||
numero = 42 #=> var numero = 42;
|
||||
oposto = true #=> var oposto = true;
|
||||
|
||||
# Condições:
|
||||
numero = -42 if oposto #=> if (oposto) {número = -42;}
|
||||
numero = -42 if oposto #=> if (oposto) {numero = -42;}
|
||||
|
||||
# Funções:
|
||||
quadrado = (x) -> x * x #=> var quadrado = function (x) {return x * x;}
|
||||
|
||||
preencher = (recipiente, líquido = "coffee") ->
|
||||
"Preenchendo o #{recipiente} with #{líquido}..."
|
||||
preencher = (recipiente, liquido = "coffee") ->
|
||||
"Preenchendo o #{recipiente} with #{liquido}..."
|
||||
#=>var preencher;
|
||||
#
|
||||
#preencher = function(recipiente, líquido) {
|
||||
# if (líquido == null) {
|
||||
# líquido = "coffee";
|
||||
#preencher = function(recipiente, liquido) {
|
||||
# if (liquido == null) {
|
||||
# liquido = "coffee";
|
||||
# }
|
||||
# return "Preenchendo o " + recipiente + " with " + líquido + "...";
|
||||
# return "Preenchendo o " + recipiente + " with " + liquido + "...";
|
||||
#};
|
||||
|
||||
# Alcances:
|
||||
@ -99,6 +100,7 @@ eat alimento for alimento in comidas when alimento isnt 'chocolate'
|
||||
# if (alimento !== 'chocolate') {
|
||||
# eat(alimento);
|
||||
# }
|
||||
```
|
||||
|
||||
## Recursos adicionais
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user