-
Notifications
You must be signed in to change notification settings - Fork 5
Adicionado um glossário de termos, como dito no issue #13 #40
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
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Gostei bastante do layout! O conteúdo também está muito bom. Preciso de apenas algumas alterações antes de fazer merge.
@@ -0,0 +1,48 @@ | |||
#+TITLE: Glossário de termos | |||
#+DATE: 2019-03-03 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Recomendo adicionar o campo #+AUTHOR com seu nome.
dictionary.org
Outdated
|
||
Referência: [[https://www.gnu.org/software/emacs/manual/html_node/eintr/Lisp-Atoms.html][Lisp Atoms - Programming in Emacs Lisp]]. | ||
*** F | ||
*Form*: Um objeto que é esperado ser evaluado sem um erro. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Existe vários problemas aqui. Form é sinônimo para uma s-exp, não é necessáriamente um objeto no sentido de OOP. Além de isso não tem muita relação com erros. Por último evaluado é um palavra inexistente em ambas línguas, português e inglês. Acho que neologismos deveriam ser evitados num dicionário.
dictionary.org
Outdated
|
||
Referência: [[https://en.wikipedia.org/wiki/Lisp_machine][Lisp Machine - Wikipedia]]. | ||
*** P | ||
*Polish Notation*: Uma forma de notação matemática onde os operadores precedem os operandos. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ótima definição.
dictionary.org
Outdated
|
||
*Predicate*: Um predicado é uma função que testa alguma condição envolvendo seus argumentos e retorna /nil/ se a condição for falsa (/false/), ou algum valor não-/nil/ se a condição for verdadeira (/true/). | ||
|
||
/Exemplos: (atom '(a b c))/ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Use listp invés de atom. Predicado atom não existe em CL e além disso seria um caso onde esse predicado iria falhar. Existe outros como oddp, evenp, zerop, plusp etc
dictionary.org
Outdated
|
||
Referência: [[https://www.cs.cmu.edu/Groups/AI/html/cltl/clm/node69.html][Common Lisp the Language - 6. Predicates]]. | ||
|
||
*Packages*: /Pacotes/ são, de grosso modo, contêineres para símbolos. Eles estão ali para ajudar você a criar /namespaces/ separados dentro de seus programas. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ótimo.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
No description provided.