Hello All,
Neil points out something that I've been meaning to ask about. What exactly are
the benefits of a continuation based design? Is the web server using it as some
type of multitasking or coroutine feature? I think I have a basic understanding
of what continuations are and how they work.
Jordan Schatz wrote at 12/11/2011 10:15 PM:
On Sun, Dec 11, 2011 at 04:25:46PM -0600, Gerry Weaver wrote:
I am new to Racket and Lisp/Scheme in general. I am trying to write a
simple rest web service in Racket, but I'm not making much
progress.
It's doable with the Racket Web Server. Part
Hi Jordan,
I would gladly contribute to your doc project. Although, I should probably
provide a brief description of what my ultimate goals are where Racket/Scheme
are concerned.
I have written an application server that is structured a little bit
differently than the current mainstream serve
I try to incorporate all questions I get into the manual in some way. If
you send me your "missing manual", I can include its content in the real
manual :)
Jay
On Sun, Dec 11, 2011 at 8:15 PM, Jordan Schatz wrote:
> On Sun, Dec 11, 2011 at 04:25:46PM -0600, Gerry Weaver wrote:
> > I am new to R
On Sun, Dec 11, 2011 at 04:25:46PM -0600, Gerry Weaver wrote:
> I am new to Racket and Lisp/Scheme in general. I am trying to write a
> simple rest web service in Racket, but I'm not making much
> progress. Unfortunately, I don't find the Racket docs to be very
> helpful. I guess my brain just isn'
Hello,
On Sun, Dec 11, 2011 at 11:25 PM, Gerry Weaver wrote:
> Hello All,
>
> I am new to Racket and Lisp/Scheme in general. I am trying to write a simple
> rest web service in Racket, but I'm not making much progress. Unfortunately,
> I don't find the Racket docs to be very helpful. I guess my b
> I am new to Racket and Lisp/Scheme in general. I am trying to write a simple
> rest web service in Racket, but I'm not making much progress. Unfortunately,
> I don't find the Racket docs to be very helpful. I guess my brain just isn't
> wired right ;-) Asking questions on the mailing list woul
Hello All,
I am new to Racket and Lisp/Scheme in general. I am trying to write a simple
rest web service in Racket, but I'm not making much progress. Unfortunately, I
don't find the Racket docs to be very helpful. I guess my brain just isn't
wired right ;-) Asking questions on the mailing lis
On Sun, Dec 11, 2011 at 3:39 PM, Harry Spier wrote:
> In the Racket Reference it gives this example for match-let .
>
> match-let ([(list a b) '(1 2)]
> [(vector x ...) #(1 2 3 4)])
> (list b a x))
>
>
> '(2 1 (1 2 3 4))
>
> I'm not clear why the result isn't '(2 1 #(1 2 3 4))
`x
In the Racket Reference it gives this example for match-let .
match-let ([(list a b) '(1 2)]
[(vector x ...) #(1 2 3 4)])
(list b a x))
'(2 1 (1 2 3 4))
I'm not clear why the result isn't '(2 1 #(1 2 3 4))
If someone could explain that I'd greatly appreciate it.
Thanks,
Harry
10 matches
Mail list logo