Re: Arbitrary nested config data. Lisp > YAML?



Frank Buss wrote:
Tin Gherdanarra wrote:


http://www.angelfire.com/punk/storyofq/storyofq.html


| rplaca blows up the stack if I do the following

CL-USER > (setf *print-circle* t)
T

Aha! If that's all there is to it... Thanks! Amazing!


CL-USER > (defparameter mydict '((a 1) (b 2) (c 3) (__parent__ nil))) MYDICT

CL-USER > (rplaca (cdr (assoc '__parent__ mydict)) mydict)
#1=(((A 1) (B 2) (C 3) (__PARENT__ . #1#)))


Tip of the propellor hat Tin .