|
|
|
|
|
by brudgers
4446 days ago
|
|
I probably shouldn't have focused on data structures when talking about dotted pairs, but some days it's just hard to be a Lisp head... > (define (f g)
((car g)(cdr g)))
> (define my-val (cons sqrt 4))
> (f my-val)
4
...and go down the rabbit hole where code and data merge. |
|