lisp | Twise Random https://twiserandom.com A site about computer science . Mon, 22 Feb 2021 00:23:18 +0000 en-US hourly 1 https://wordpress.org/?v=5.8.1 https://twiserandom.com/wp-content/uploads/2019/08/cropped-abstract-color-32x32.jpg lisp | Twise Random https://twiserandom.com 32 32 Characters in lisp a tutorial https://twiserandom.com/lisp/characters-in-lisp-a-tutorial/ Sun, 21 Feb 2021 05:20:41 +0000 https://twiserandom.com/?p=6388  

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

The post Characters in lisp a tutorial first appeared on Twise Random.]]>
 

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

The post Characters in lisp a tutorial first appeared on Twise Random.]]>
What is a form in lisp ? https://twiserandom.com/lisp/what-is-a-form-in-lisp/ Fri, 22 Jan 2021 21:37:42 +0000 https://twiserandom.com/?p=6198  

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

The post What is a form in lisp ? first appeared on Twise Random.]]>
 

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

The post What is a form in lisp ? first appeared on Twise Random.]]>
What is an atom , a symbol , a cons , and a list in lisp ? https://twiserandom.com/lisp/what-is-an-atom-a-symbol-a-cons-and-a-list-in-lisp/ Tue, 19 Jan 2021 21:09:03 +0000 https://twiserandom.com/?p=6162  

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

The post What is an atom , a symbol , a cons , and a list in lisp ? first appeared on Twise Random.]]>
 

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 The post What is an atom , a symbol , a cons , and a list in lisp ? first appeared on Twise Random.]]>