Re: [racket] Places and non-blocking get

2014-06-01 Thread John Clements
On Jun 1, 2014, at 1:18 PM, Charles Hixson wrote: > I'm contemplating implementing a program in Racket, but it involves > different processes sending messages to each other, so I need to be able > to check for the presence of a message without brining everything to a > halt. In Python I'd do th

[racket] Places and non-blocking get

2014-06-01 Thread Charles Hixson
I'm contemplating implementing a program in Racket, but it involves different processes sending messages to each other, so I need to be able to check for the presence of a message without brining everything to a halt. In Python I'd do this using a Queue. Is there something similar in Racket? The