blob: 41325dd73ed36df3c0ba6f2c36940b299b98884e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
(define a 1)
(+ a 1)
(+ a 0.1)
("string test () . '" hello blah)
(more blah (something))
(1 2 3) (list 1 2 3) (quote (1 2 3))
(1)
1
'1
1
'(2 3 4)
(6 7)
('1)
1
|