10, 23, -57, etc.
0xffee, 0xABcd, etc.
0.1, 3.1415, -2.71828, .1e-5, -.53e10 etc.
"Hello world!", "Hello ""Kumar""!", etc.
hello, WORLD, <DouglasAdams>, Piglet*, etc.
(1 2 3), (hello world 42), (numbers ("PI = " 3.1415) ("e = " 2.718))
(). Anything else goes for truth. '(hello "muSE")
(hello "muSE")
hello and evaluate it, supplying the rest of the list as arguments.(a . (b . (c . (d . ()))))
() is the NIL or empty list. This list is abbreviated as(a b c d)
() at the end of the list. This is notated as(a b c . d)
(a . (b . (c . d)))
1.4.7