Re: Some initial questions

2013-09-26 Thread Joe Bogner
Hi Luis, I've built a proof of concept PicoLisp apk and ran it on a Droid X and my kindle fire. I wrote about it here: http://www.mail-archive.com/picolisp@software-lab.de/msg03114.html I was able to build the entire apk using terminal ide on my android (no android SDK). I'm happy to answer any

Re: Some initial questions

2013-09-26 Thread Luis P. Mendes
Thank you all for your messages! Henrik: It's good to know that database speed is compared to major RDBMs. PicoLisp having an integrated database is a big plus for the language. Alex: Thank you for providing the community such a powerful language that for sure has many many hours of hard work. As

Re: get function for chart holding list of db objects

2013-09-26 Thread Alexander Burger
Hi Olaf, you are quite close, I think. The 'keyA' relation has a small problem > (class +Foo +Entity) > (rel keyA (+Ref +Number) 2) > (rel keyB (+Ref +String)) '+Ref' takes an optional argument, and '2' should be for '+Number', so correct would be (rel keyA (+Ref +Number) NIL 2) Then, ins