[ALLY] Is your View behaving like mine? Re:(3)
From: larry:ecotope at: 6-Sep-2000 17:06
Hi Jim,
I guess I don't quite follow your meaning. I assume that by "recursive" you
mean nested blocks or objects. But if mold and save do nested blocks
something like:
a: [1 2 [3 4]]
== [1 2 [. . .]] ;console display pretty-printed: this is fine
print mold a
== [1 2 [. . .]] ;seems undesirable
save %dummy.r a
read %dummy.r
=="1 2 [. . .]" ;seems undesirable
then the ability to save and load code blocks would still be broken.
Or do you mean that just the return value displayed in console mode is
treated in this manner, similar to the way that it is currently truncated
after so many items?
-Larry