Re: Some initial questions

2013-09-28 Thread Henrik Sarvell
I ended up adding everything I know of at the bottom of http://picolisp.com/5000/!wiki?Documentation I suppose the rosetta examples and the code repositories aren't strictly documentation but it felt like a better idea to put it on the documentation page than making a completely new page. It's goo

Class inheritance - unexpected behaviour?

2013-09-28 Thread Thorsten Jolitz
Hi List, assume this class hierarchy: ,-- | (class +a) | (rel a1) | | (class +b +a) | (rel b1) | | (class +C +b) | (rel C1) | | (class +D +a) | (rel D1) `-- now ,--- | (select a1 +C) `--- and ,--- | (select a1 +D) `---