learnxinyminutes-docs/pt-br/coffeescript-pt.html.markdown

109 lines
3.1 KiB
CoffeeScript
Raw Normal View History

2014-06-05 17:20:18 +04:00
---
language: coffeescript
contributors:
- ["Tenor Biel", "http://github.com/L8D"]
- ["Xavier Yao", "http://github.com/xavieryao"]
2019-03-27 21:48:50 +03:00
- ["Claudio Busatto", "http://github.com/cjcbusatto"]
2014-06-05 17:20:18 +04:00
translators:
- ["Miguel Araújo", "https://github.com/miguelarauj1o"]
lang: pt-br
filename: learncoffeescript-pt.coffee
---
2019-03-27 21:48:50 +03:00
CoffeeScript é uma pequena linguagem que compila um-para-um para o JavaScript
equivalente, e não interpretação em tempo de execução. Como um dos sucessores
de JavaScript, CoffeeScript tenta o seu melhor para exibir uma saída legível,
bem-impressa e bom funcionamento dos códigos JavaScript em todo o tempo de
2014-06-05 17:20:18 +04:00
execução JavaScript.
2019-03-27 21:48:50 +03:00
Veja também [site do CoffeeScript](http://coffeescript.org/), que tem um tutorial
2014-06-05 17:20:18 +04:00
completo sobre CoffeeScript.
``` coffeescript
#CoffeeScript é uma linguagem moderna
#Segue as tendências de muitas linguagens modernas
#Assim, os comentários são iguais a Ruby e Python, eles usam símbolos numéricos.
2019-03-27 21:48:50 +03:00
###
Os comentários em bloco são como estes, e eles traduzem diretamente para '/ *'s e
2014-06-05 17:20:18 +04:00
'* /'s para o código JavaScript que resulta...
2019-03-27 21:48:50 +03:00
Você deveria entender mais de semântica de JavaScript antes de continuar...
2014-06-05 17:20:18 +04:00
###
2019-03-27 21:48:50 +03:00
# Tarefa:
numero = 42 #=> var numero = 42;
2014-06-05 17:20:18 +04:00
oposto = true #=> var oposto = true;
2019-03-27 21:48:50 +03:00
# Condições:
2019-03-27 21:46:41 +03:00
numero = -42 if oposto #=> if (oposto) {numero = -42;}
2014-06-05 17:20:18 +04:00
2019-03-27 21:48:50 +03:00
# Funções:
2014-06-05 17:20:18 +04:00
quadrado = (x) -> x * x #=> var quadrado = function (x) {return x * x;}
2019-03-27 21:46:41 +03:00
preencher = (recipiente, liquido = "coffee") ->
"Preenchendo o #{recipiente} with #{liquido}..."
2014-06-05 17:20:18 +04:00
#=>var preencher;
#
2019-03-27 21:46:41 +03:00
#preencher = function(recipiente, liquido) {
# if (liquido == null) {
# liquido = "coffee";
2014-06-05 17:20:18 +04:00
# }
2019-03-27 21:46:41 +03:00
# return "Preenchendo o " + recipiente + " with " + liquido + "...";
2014-06-05 17:20:18 +04:00
#};
2019-03-27 21:48:50 +03:00
# Alcances:
2014-06-05 17:20:18 +04:00
list = [1 .. 5] #=> lista var = [1, 2, 3, 4, 5];
# Objetos:
math =
root: Math.sqrt
square: square
cube: (x) -> x * square x
#=> var math = {
# "root": Math.sqrt,
# "square": square,
# "cube": function(x) { return x * square(x); }
#}
# Splats:
corrida = (vencedor, corredores...) ->
print vencedor, corredores
#=>corrida = function() {
# var corredores, vencedor;
# vencedor = arguments[0], corredores = 2 <= arguments.length ? __slice.call(arguments, 1) : [];
# return print(vencedor, corredores);
#};
# Existências:
alert "Eu sabia!" if elvis?
#=> if(typeof elvis !== "undefined" && elvis !== null) { alert("Eu sabia!"); }
# Compressão de Matrizes:
2019-03-27 21:48:50 +03:00
cubes = (math.cube num for num in list)
2014-06-05 17:20:18 +04:00
#=>cubes = (function() {
# var _i, _len, _results;
# _results = [];
# for (_i = 0, _len = list.length; _i < _len; _i++) {
# num = list[_i];
# _results.push(math.cube(num));
# }
# return _results;
# })();
comidas = ['brócolis', 'espinafre', 'chocolate']
2014-06-05 17:20:18 +04:00
eat alimento for alimento in comidas when alimento isnt 'chocolate'
#=>comidas = ['brócolis', 'espinafre', 'chocolate'];
2014-06-05 17:20:18 +04:00
#
#for (_k = 0, _len2 = comidas.length; _k < _len2; _k++) {
# alimento = comidas[_k];
# if (alimento !== 'chocolate') {
# eat(alimento);
# }
2019-03-27 21:46:41 +03:00
```
2014-06-05 17:20:18 +04:00
## Recursos adicionais
- [Smooth CoffeeScript](http://autotelicum.github.io/Smooth-CoffeeScript/)
2019-03-27 21:46:41 +03:00
- [CoffeeScript Ristretto](https://leanpub.com/coffeescript-ristretto/read)