I am currently playing around with LISP. Everything is fine, but I can't understand the following issue.
I have the this append-operation:
(define (append l1 l2)
(if (eq? l1 null)
l2
(cons (first l1)
(myappend (rest l1) l2))))
I use it like this:
(myappend (cons (cons 1 2) null) '(4 5))
And the result in Racket is:
'((1 . 2) 4 5)
But why? In my oppinion it should be '(1 2 4 5), because cons returns a list and myappends appends two lists. Can anybody help me? What is LISP doing?

nil. In standard Scheme (of which Racket is evidently a dialect), lists are not terminated by a symbol. They are terminated by an empty list object which is written()(and which must be quoted when used as an expression:'()). In Scheme you use(null? x)to test whetherxis the empty list, not(eq x null); there is no predefinednull. In Common Lisp, it's(null x)or(not x)or(eq x nil). – Kaz Apr 9 '12 at 19:27