0 votes
in LISP by
What is the programming structure for LISP?

1 Answer

0 votes
by

LISP programming structure is composed of symbolic expressions or s-expressions. The s-expression consists of three valid objects

• Atom: It is a number or string of contiguous characters

• Lists : A list is a sequence of atoms or other lists enclosed in parentheses

• String: A group of characters enclosed in double quotation marks is referred as String.

LISP programs can be either run on an interpreter or as a compiled code

Related questions

0 votes
asked Mar 4, 2021 in LISP by SakshiSharma
0 votes
asked Mar 2, 2021 in LISP by SakshiSharma
...