Twise Random

A site about computer science .
Skip to content
  • apple
  • android
  • c
  • cpp
  • data structure and algorithms
  • macos
  • python
  • tutorials

Category: lisp

Characters in lisp a tutorial

Posted on February 21, 2021February 22, 2021 by mohamad wael

 

Character repertoires in lisp

A character repertoire such as ascii , or Latin alphabet 1 , or unicode , is a set of characters .

Each character , such as a , in a repertoire , is assigned a … Read More

lisp tutorial

What is a form in lisp ?

Posted on January 22, 2021January 22, 2021 by mohamad wael

 

A form is anything which is to be evaluated .

Lisp is formed of two things : atoms and cons .

An atom is anything which is not a cons , a cons holds two references.

A list is … Read More

lisp tutorial

What is an atom , a symbol , a cons , and a list in lisp ?

Posted on January 19, 2021January 21, 2021 by mohamad wael

 

A symbol is an atom , an atom is everything which is not a cons . A list is anything which is enclosed by parenthesis .

(1 2 3 )
(defun square(num ) (* num num ) )
;;;Two 
… Read More
lisp tutorial