[ create a new paste ] login | about

Link: http://codepad.org/aIjd7Xmm    [ raw code | output | fork ]

Scheme, pasted on Apr 2:
1
2
3
4
5
6
7
8
9
(define (foo) '(1 2))
     
(define a (foo))
(define b (foo))
     
(set-car! a "x_x")
     
(display a)
(display b)


Output:
1
(x_x 2)(x_x 2)


Create a new paste based on this one


Comments: