Re: [Chicken-users] Set data structure

2009-12-01 Thread Lam Luu
some sort? Thank you for your link though, Kon, Lam On 12/01/2009 08:57 PM, Kon Lovett wrote: > > On Dec 1, 2009, at 6:47 PM, Lam Luu wrote: > > Hello everyone, > > Currently, I need to have a data structure that implement set > (unordered list, in other words). As of know, i

[Chicken-users] Set data structure

2009-12-01 Thread Lam Luu
unit implementing set? Thank you very much, Lam Luu -BEGIN PGP SIGNATURE- Version: GnuPG v1.4.9 (GNU/Linux) Comment: Using GnuPG with Fedora - http://enigmail.mozdev.org/ iEYEARECAAYFAksV1UAACgkQwnXdyzbwLCXahACgtxBbEbHX9LsXWSGUY8o3FB07 Eo4AnRTicusThut40D+/cxDX/hdXCJtl =7Uq6 -END PGP

Re: [Chicken-users] Missing chicken-ffi-macros.scm

2009-03-21 Thread Lam Luu
Taylor Venable wrote: On Fri, Mar 20, 2009 at 12:17:20PM -0500, Lam Luu wrote: Do you know what is going on, and how to fix it? I saw this also with the Chicken package on Ubuntu. If you compile and install from source this shouldn't happen. (Don't worry, it's qu

[Chicken-users] Missing chicken-ffi-macros.scm

2009-03-20 Thread Lam Luu
Hello everyone, I am trying to set up my Chicken Scheme on a Debian (5.0, stable) box. Current, I have installed the deb packages chicken-bin and libchicken3 on the system, and am trying to setup some eggs. When I call "chicken-setup postgresql", the compiler encounters error like this: No

[Chicken-users] Questions about pipes

2009-03-12 Thread Lam Luu
is not a port (even file-write procedure to write to a low-level file descriptor refuses to work). Is there any way to spawn another process, then catch both of its stdin and stdout? Thank you, Lam Luu ___ Chicken-users mailing list Chicken-users

Re: [Chicken-users] Question about pipe

2009-03-11 Thread Lam Luu
k ] This mismatches with the documentation on chicken.wiki.br, of course. Thank you, Lam Luu ___ Chicken-users mailing list Chicken-users@nongnu.org http://lists.nongnu.org/mailman/listinfo/chicken-users

[Chicken-users] Question about pipe

2009-03-11 Thread Lam Luu
is not a port (even file-write procedure to write to a low-level file descriptor refuses to work). Is there any way to spawn another process, then catch both of its stdin and stdout? Thank you, Lam Luu ___ Chicken-users mailing list Chicken-users

Re: [Chicken-users] Re: A call to arms

2009-01-22 Thread Lam Luu
Andrew Gwozdziewycz wrote: On Thu, Jan 22, 2009 at 9:26 AM, Lam Luu wrote: I think that a web framework on Scheme must employ continuation to the fullest. It would be great if the programmers can write scripts that act as if they are run continuously (but actually stopped and restart by the

[Chicken-users] Re: A call to arms

2009-01-22 Thread Lam Luu
I think that a web framework on Scheme must employ continuation to the fullest. It would be great if the programmers can write scripts that act as if they are run continuously (but actually stopped and restart by the continuation). Plus, given that Chicken use continuations extensively, I expec

Re: [Chicken-users] Is there any way programmatically to determine a macro?

2009-01-05 Thread Lam Luu
Andrew Gwozdziewycz wrote: On Jan 5, 2009, at 5:48 PM, Lam Luu wrote: Hello all! Given an S-Expression, (here is an example), is there any way to write a script to determine whether or not that expression is a procedure-call or a macro? If it is a macro call, is there anyway to expand it

[Chicken-users] Is there any way programmatically to determine a macro?

2009-01-05 Thread Lam Luu
I know if is using expand-syntax procedure, but that seems to be for interactive use only. Thank you, Lam Luu ___ Chicken-users mailing list Chicken-users@nongnu.org http://lists.nongnu.org/mailman/listinfo/chicken-users

[Chicken-users] How to do CGI stuffs?

2008-12-20 Thread Lam Luu
Hello everyone! This is the first time I use mailing list, and I hope I have everything correct! Please pardon any mistake I make. Anyway, I am trying to do CGI with Chicken Scheme. I have been trying to find an egg or something similar to provide basic facilities such as parsing POST and GET