Re: [racket] list splat into variable arity

2011-11-23 Thread Louis-Philippe
great! thanks! 2011/11/23 Neil Van Dyke > Tony Garnock-Jones wrote at 11/23/2011 04:14 PM: > > On 2011-11-23 4:12 PM, Louis-Philippe wrote: >> >> >>> I looked around and couldn't find how to expand a list to fit as >>> multiple function

[racket] list splat into variable arity

2011-11-23 Thread Louis-Philippe
Hi, I looked around and couldn't find how to expand a list to fit as multiple function arguments, for variable arity functions rest. must be simple... regards, L-P _ For list-related administrative tasks: http://lists.racket-lang.org/listinfo/u

[racket] Fwd: gui application open without frame?

2011-11-21 Thread Louis-Philippe
u item. > > At Mon, 21 Nov 2011 15:08:37 -0500, Louis-Philippe wrote: > > right now, having > > (yield (make-semaphore)) > > at the end of my program, the application doesn't exit and my root > menu-bar > > stays... but the quit menu doesn't work anymore...

Re: [racket] gui application open without frame?

2011-11-21 Thread Louis-Philippe
1 Nov 2011 13:40:06 -0500, Louis-Philippe wrote: > > I looked around the docs for racket/gui and I can't find how to do > > something very basic... how can I leave a racket/gui app opened after > all > > windows have closed so that the root menu-bar can stay visible? >

[racket] gui application open without frame?

2011-11-21 Thread Louis-Philippe
H racket peoples! I looked around the docs for racket/gui and I can't find how to do something very basic... how can I leave a racket/gui app opened after all windows have closed so that the root menu-bar can stay visible? thanks! L-P _ For list

[racket] Fwd: regexp-match number

2011-06-22 Thread Louis-Philippe
-match #px"(.*)(?:\\1)001" "abcabc001") > '("abcabc001" "abc") > > At Wed, 22 Jun 2011 09:52:09 -0400, Louis-Philippe wrote: > > Hi all, > > > >I have a small question about regexp-match: > > > > > >whe

[racket] regexp-match number

2011-06-22 Thread Louis-Philippe
Hi all, I have a small question about regexp-match: when I want to insert a sub-expression followed by a number what should I write? like "\1001" to insert sub-expression 1 followed by 001 right now tries to insert sub-expression 1001... is there a way to escape this? thanks! L-P