Hacker News new | ask | show | jobs
by sctb 6355 days ago
Persistent in this case means that if FOO has value '((2 3) 4) and someone does (CONS 1 FOO) => '(1 (2 3) 4); the value of FOO does not change, but the new list shares its structure.
1 comments

If you do a cons cell diagram for this it will make perfect sense.