Re: [Chicken-users] lambda's in a hash table

2014-04-05 Thread Claude Marinier
On Sat, 5 Apr 2014, Thomas Chust wrote: On 2014-04-05 01:54, Claude Marinier wrote: [...] I would like to have the compiler do some of this for me. I probably cannot write a literal hash table but I expected to be able to write a literal association list. I have tried this but it does not work

Re: [Chicken-users] lambda's in a hash table

2014-04-04 Thread Thomas Chust
On 2014-04-05 01:54, Claude Marinier wrote: > [...] > I would like to have the compiler do some of this for me. I probably > cannot write a literal hash table but I expected to be able to write a > literal association list. I have tried this but it does not work. > [...] > (define a-list > `( >

[Chicken-users] lambda's in a hash table

2014-04-04 Thread Claude Marinier
Bonjour, I can add lambdas to a hash table at run time, retrieve them, and execute them. This is very useful. I would like to have the compiler do some of this for me. I probably cannot write a literal hash table but I expected to be able to write a literal association list. I have tried thi