diff options
author | elf <edipofederle@gmail.com> | 2014-12-26 09:06:38 -0200 |
---|---|---|
committer | elf <edipofederle@gmail.com> | 2014-12-26 09:06:38 -0200 |
commit | 0b65be8f0c876a10fb2ac823d5c551f90d7ef51e (patch) | |
tree | 2746a1888675c57d7724343054b0ea952eeb351e /pt-br | |
parent | e2606bb26259f702e6359afa4075c8a081fb7600 (diff) |
Removing comments...
Diffstat (limited to 'pt-br')
-rw-r--r-- | pt-br/common-lisp-pt.html.markdown | 24 |
1 files changed, 4 insertions, 20 deletions
diff --git a/pt-br/common-lisp-pt.html.markdown b/pt-br/common-lisp-pt.html.markdown index a2506aec..ba45c4ed 100644 --- a/pt-br/common-lisp-pt.html.markdown +++ b/pt-br/common-lisp-pt.html.markdown @@ -1,27 +1,19 @@ --- - language: "Common Lisp" -filename: commonlisp.lisp +filename: commonlisp-pt.lisp contributors: - ["Paul Nathan", "https://github.com/pnathan"] +translators: + - ["Édipo Luis Féderle", "https://github.com/edipofederle"] --- -<!-- ANSI Common Lisp is a general purpose, multi-paradigm programming --> -<!-- language suited for a wide variety of industry applications. It is --> -<!-- frequently referred to as a programmable programming language. --> - ANSI Common Lisp é uma linguagem de uso geral, multi-paradigma, designada para uma variedade de aplicações na indústria. É frequentemente citada como uma linguagem de programação programável. -<!-- The classic starting point is [Practical Common Lisp and freely available.](http://www.gigamonkeys.com/book/) --> - O ponto inicial clássico é [Practical Common Lisp and freely available.](http://www.gigamonkeys.com/book/) -<!-- Another popular and recent book is --> -<!-- [Land of Lisp](http://landoflisp.com/). --> - Outro livro recente e popular é o [Land of Lisp](http://landoflisp.com/). @@ -34,25 +26,17 @@ Outro livro recente e popular é o ;;; "Form" Geral -<!-- ;; Lisp has two fundamental pieces of syntax: the ATOM and the --> -<!-- ;; S-expression. Typically, grouped S-expressions are called `forms`. --> ;; Lisp tem dois pedaços fundamentais de sintaxe: o ATOM e S-expression. ;; Tipicamente, S-expressions agrupadas são chamadas de `forms`. -<!-- 10 ; an atom; it evaluates to itself --> -10 ; um atom; é avaliado para ele mesmo -<!-- :THING ;Another atom; evaluating to the symbol :thing. --> +10 ; um atom; é avaliado para ele mesmo :THING ;Outro atom; avaliado para o símbolo :thing. -<!-- t ; another atom, denoting true. --> - t ; outro atom, denotado true. -<!-- (+ 1 2 3 4) ; an s-expression --> - (+ 1 2 3 4) ; uma s-expression '(4 :foo t) ;outra s-expression |