mirror of
https://github.com/adambard/learnxinyminutes-docs.git
synced 2025-05-05 14:28:31 +00:00
Removing comments...
This commit is contained in:
parent
e2606bb262
commit
0b65be8f0c
@ -1,27 +1,19 @@
|
|||||||
---
|
---
|
||||||
|
|
||||||
language: "Common Lisp"
|
language: "Common Lisp"
|
||||||
filename: commonlisp.lisp
|
filename: commonlisp-pt.lisp
|
||||||
contributors:
|
contributors:
|
||||||
- ["Paul Nathan", "https://github.com/pnathan"]
|
- ["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
|
ANSI Common Lisp é uma linguagem de uso geral, multi-paradigma, designada
|
||||||
para uma variedade de aplicações na indústria. É frequentemente citada
|
para uma variedade de aplicações na indústria. É frequentemente citada
|
||||||
como uma linguagem de programação programável.
|
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/)
|
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
|
Outro livro recente e popular é o
|
||||||
[Land of Lisp](http://landoflisp.com/).
|
[Land of Lisp](http://landoflisp.com/).
|
||||||
|
|
||||||
@ -34,25 +26,17 @@ Outro livro recente e popular é o
|
|||||||
|
|
||||||
;;; "Form" Geral
|
;;; "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.
|
;; Lisp tem dois pedaços fundamentais de sintaxe: o ATOM e S-expression.
|
||||||
;; Tipicamente, S-expressions agrupadas são chamadas de `forms`.
|
;; 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.
|
:THING ;Outro atom; avaliado para o símbolo :thing.
|
||||||
|
|
||||||
<!-- t ; another atom, denoting true. -->
|
|
||||||
|
|
||||||
t ; outro atom, denotado true.
|
t ; outro atom, denotado true.
|
||||||
|
|
||||||
<!-- (+ 1 2 3 4) ; an s-expression -->
|
|
||||||
|
|
||||||
(+ 1 2 3 4) ; uma s-expression
|
(+ 1 2 3 4) ; uma s-expression
|
||||||
|
|
||||||
'(4 :foo t) ;outra s-expression
|
'(4 :foo t) ;outra s-expression
|
||||||
|
Loading…
Reference in New Issue
Block a user