LISP – Operators

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

This topic is about LISP - Operators. An operator is a symbol that tells the compiler to perform specific mathematical or logical manipulations. LISP allows numerous operations on data, supported…

Continue ReadingLISP – Operators

LISP – Constants

  • Post author:
  • Post category:LISP
  • Post comments:1 Comment

This topic is about LISP - Constants. In LISP, constants are variables that never change their values during program execution. Constants are declared using the defconstant construct. Example The following example shows…

Continue ReadingLISP – Constants

LISP – Macros

  • Post author:
  • Post category:LISP
  • Post comments:1 Comment

This topic is about LISP - Macros. Macros allow you to extend the syntax of standard LISP. Technically, a macro is a function that takes an s-expression as arguments and…

Continue ReadingLISP – Macros