Object serialization: Difference between revisions

m
Added self-referencing note to EchoLisp
(Added EchoLisp)
m (Added self-referencing note to EchoLisp)
Line 759:
papa → papa: father of (Antoinette Elvis). ; YES 😳 !
 
;; Caveat - Self -referencing works :
;; add 'papa' to the chidren of 'papa' - whatever this means - and print it :
(set-father-children! papa (list simon papa elvis))
papa → papa: father of (Antoinette papa Elvis).
 
; ❌ ... but ... (known bug in the current implementation)
(local-put-value 'papa papa "objects.dat")
; will produce a "Too much recursion' error.
</lang>