LISP – Lists

  • Post author:
  • Post category:LISP
  • Post comments:0 Comments

This topic is about LISP - Lists. Lists had been the most important and the primary composite data structure in traditional LISP. Present day's Common LISP provides other data structures…

Continue ReadingLISP – Lists

LISP – Strings

  • Post author:
  • Post category:LISP
  • Post comments:2 Comments

This topic is about LISP - Strings. Strings in Common Lisp are vectors, i.e., one-dimensional array of characters. String literals are enclosed in double quotes. Any character supported by the…

Continue ReadingLISP – Strings

LISP – Arrays

  • Post author:
  • Post category:LISP
  • Post comments:4 Comments

This topic is about LISP - Arrays. LISP allows you to define single or multiple-dimension arrays using the make-array function. An array can store any LISP object as its elements. All arrays…

Continue ReadingLISP – Arrays

LISP – Numbers

  • Post author:
  • Post category:LISP
  • Post comments:2 Comments

This topic is about LISP - Numbers. Common Lisp defines several kinds of numbers. The number data type includes various kinds of numbers supported by LISP. The number types supported by LISP…

Continue ReadingLISP – Numbers