Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 
avatar of thrig

thrig

thrig has asked 0 questions and find answers to 1 problems.

Stats

25
EtPoint
8
Vote count
0
questions
1
answers

About

'(+ 1 2)
`(+ 1 2)
(list '+ 1 2)
(quote (+ 1 2))
(cons '+ '(1 2))
(cons '+ `(1 2))
(cons '+ (list 1 2))
(cons '+ (quote (1 2)))
(cons '+ (cons 1 (list 2)))
(cons '+ (cons 1 (cons 2 nil)))