Skip to content

Integra glossário, atualiza 'aprendizado.org' e conserta link do artigo de 'notação polonesa'. #43

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Mar 11, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 5 additions & 4 deletions index.org
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
#+AUTHOR: Manoel Vilela, Lucas Vieira, Hélio Cordeiro
#+DATE: <2018-02-10 Sat>
#+TITLE: Common Lisp Brasil
#+LANGUAGE: bt-br
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Isso não é um erro!

#+LANGUAGE: bt-br #isso não é um erro.
#+LATEX_HEADER: \usepackage[]{babel}
#+OPTIONS: toc:nil

Expand All @@ -25,11 +25,12 @@ repositório desta página]].
* Sitemap

- [[file:appendix.html][Apêndice]]
- [[http://lisp.com.br/archive/][Arquivos]]
- [[http://lisp.com.br/cl-cookbook][The Common Lisp Cookbook (PT-BR) (em progresso)]]
- [[https://lisp.com.br/archive/][Arquivos]]
- [[https://lisp.com.br/dictionary.html][Glossário de termos]]
- [[file:projects.html][Projetos]]
- [[file:rules.html][Regras]]

- [[https://lisp.com.br/cl-cookbook][The Common Lisp Cookbook (PT-BR) (em progresso)]]

* Conceitos e Fundamentos
#+INCLUDE: subsections/index/conceitos-e-fundamentos.org :only-contents t

Expand Down
18 changes: 13 additions & 5 deletions subsections/index/aprendizado.org
Original file line number Diff line number Diff line change
Expand Up @@ -22,12 +22,20 @@ interativas como Lisp e Python. A propósito, o conceito foi
inicialmente feito justamente em Lisp!

* Livros
# Os livros físicos devem conter link para compra em lojas no Brasil. Links de compras em outros países não serão aceitos.
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Porque o # no inicio da linha?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

É para ser um comentário no org-file.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ah ok. Mas isso não é renderizado não né? Nunca havia usado comentários no org-file.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Não, não é. Começar com # é comentário, e começar com #+ é opção do org.


- Common Lisp: A Gentle Introduction to Symbolic Computation, por David S. Touretsky
- [Amazon] [[https://www.amazon.com.br/Common-LISP-Introduction-Computation-Engineering-ebook/dp/B00IZUEG1G/][Livro físico]]
- [[https://www.amazon.com.br/Common-LISP-Introduction-Computation-Engineering-ebook/dp/B00IZUEG1G/][Livro físico]] [/Amazon/]
- [[https://www.cs.cmu.edu/~dst/LispBook/][Versão online]]
- [Amazon] [[https://www.amazon.com.br/Land-Lisp-Learn-Program-Game-ebook/dp/B004AE3P4K/][Land of Lisp: Learn to Program in Lisp, One Game at a Time!]], por Conrad Barski
- [Amazon] [[https://www.amazon.com.br/Common-Lisp-Recipes-Problem-Solution-Approach-ebook/dp/B01JFTONBS/][Common Lisp Recipes: A Problem-Solution Approach]], por Edmund Weitz
- Practical Common Lisp, por Peter Seibel
- [Amazon] [[https://www.amazon.com.br/Practical-Common-Lisp-Peter-Seibel/dp/1590592395][Livro físico]]

- [[https://www.amazon.com.br/Common-Lisp-Recipes-Problem-Solution-Approach-ebook/dp/B01JFTONBS/][Common Lisp Recipes: A Problem-Solution Approach]], por Edmund Weitz. [/Amazon/]

- Practical Common Lisp, por Peter Seibel.
- [[https://www.amazon.com.br/Practical-Common-Lisp-Peter-Seibel/dp/1590592395][Livro físico]] [/Amazon/]
- [[http://www.gigamonkeys.com/book/][Versão online]]

- [[https://www.cs.cmu.edu/Groups/AI/html/cltl/clm/clm.html][Common Lisp the Language, 2nd Edition]], por Guy L. Steele Jr. [/Online/]

- [[https://www.amazon.com.br/Land-Lisp-Learn-Program-Game-ebook/dp/B004AE3P4K/][Land of Lisp: Learn to Program in Lisp, One Game at a Time!]], por Conrad Barski. [/Amazon/]

- [[https://lispcookbook.github.io/cl-cookbook/][The Common Lisp Cookbook]] (/inglês/). [/Online/]
2 changes: 1 addition & 1 deletion subsections/index/conceitos-e-fundamentos.org
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ valores e/ou a procedimentos. Na linguagens da família Lisp, há a
peculiaridade de existir uma linha muito tênue de separação entre
dados e procedimentos no código-fonte. Na realidade, é possível
produzir código a partir de dados e vice-versa! Uma das
características fortes da linguagem é o uso da [[https://pt.wikipedia.org/wiki/Nota%25C3%25A7%25C3%25A3o_polonesa][notação polonesa]], que
características fortes da linguagem é o uso da [[https://pt.wikipedia.org/wiki/Nota%C3%A7%C3%A3o_polonesa][notação polonesa]] que
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Ótimo

simplifica a sintaxe da linguagem, de forma a previnir ambiguidades:
operações e operandos são denotados de forma explícita, em sua ordem
de precedência, no uso de listas.
Expand Down