PicoLisp relations and UML

2013-01-31 Thread Thorsten Jolitz
Hi List, I have a few questions with regards to representing PicoLisp relations in UML notation: 1. Syntactic outlier? Is this: ,--- | (rel ord (+Dep +Joint) # Order |(itm) |pos (+Ord) )

Re: PicoLisp relations and UML

2013-01-31 Thread Alexander Burger
Hi Thorsten, I have a few questions with regards to representing PicoLisp relations in UML notation: Hmm, as I have no experiences with UML, and can't help with that. However, concerning some of your other questions: ,--- | (rel ord (+Dep +Joint)

Re: PicoLisp relations and UML

2013-01-31 Thread Thorsten Jolitz
Alexander Burger a...@software-lab.de writes: Hi Alex, You could read and print the data in a flat format to some file, e.g.: (out er.flat (in myApp/er.l (while (read) (println @)) ) ) This gives one top-level expression per line which can be easily 'regexp'ed. Thats a