2009/3/5 Praveen D V <[email protected]>: > Hope I'm clear this time.
I hope I am too: guile> (define x (cons 'c 'd)) guile> x (c . d) guile> (define y (cons 'b x)) guile> y (b c . d) guile> (define z (cons 'a y)) guile> z (a b c . d) --linas
2009/3/5 Praveen D V <[email protected]>: > Hope I'm clear this time.
I hope I am too: guile> (define x (cons 'c 'd)) guile> x (c . d) guile> (define y (cons 'b x)) guile> y (b c . d) guile> (define z (cons 'a y)) guile> z (a b c . d) --linas