0 votes
in LISP by
Demonstrate with an example how you can code in LISP?

1 Answer

0 votes
by

Almost everything in LISP is a function, even the mathematical operators.

For example, (+ (* 5 3) 1 )

The output will be 16, functions in LISP open and close with parenthesis.

Related questions

+1 vote
asked Mar 4, 2021 in LISP by SakshiSharma
0 votes
asked Mar 4, 2021 in LISP by SakshiSharma
...