U3 L1 Introduction to LISP
U3 L1 Introduction to LISP
By
LISP has been one of the most popular languages for AI applications.
Output
C:\Users\manoj>clisp hello.lisp
Hello World
I am Learning LISP
A name can have digits but not entirely made of digits, because then
it would be read as a number. Similarly a name can have periods, but
can't be made entirely of periods.
Any variable can take any LISP object as its value, unless you have
declared it explicitly.
Ex:
; set value of x as 10
(setq x 10)
(write x)
Output->