Re: [racket-users] What are good references for implementing interpreters in Racket (or Scheme/LISP)?

2018-02-28 Thread Justin Slepak
> > On Feb 23, 2018, at 8:56 PM, Matthias Felleisen > wrote: > >> • Racket J experimental package > The docs suggest that this is a truly strange approach, writing programs as > strings and then compiling them into Racket. > This is a common thing with J

Re: [racket-users] Are canvases stackable?

2018-02-28 Thread David Alkire
Ha. I don't know how I missed that in the docs. Thanks. Also, is this the best venue for some questions like this or would the IRC channel be a better fit? -David On Wed, Feb 28, 2018, 6:48 AM Alex Harsanyi wrote: > > Try this: > > (send a-pasteboard

Re: [racket-users] Are canvases stackable?

2018-02-28 Thread Alex Harsanyi
Try this: (send a-pasteboard set-selection-visible #f) Normally, you would create your own class derived from `pasteboard%`, to add the specialized snip management code. In that case, you can add the following line to your class declaration, right after the `(super-new)` call.

Re: [racket-users] Are canvases stackable?

2018-02-28 Thread David Alkire
How could I set the style of my piece snips so that they don't have the selected bounding box as I select and drag them? On Sun, Feb 25, 2018, 6:12 AM David Alkire wrote: > That's interesting. Thanks, I'll give it a try. > > On Fri, Feb 23, 2018, 11:24 PM Alex Harsanyi

[racket-users] Re: Understanding 'curry'

2018-02-28 Thread Jack Firth
Thanks everyone for the headache. I think I'll stick to the `fancy-app` package and reserve curry for adventurous dinner outings. -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe from this group and stop receiving emails from it,

RE: [racket-users] Understanding 'curry'

2018-02-28 Thread Jos Koot
You are right, I think. Thanks. _ From: David Storrs [mailto:david.sto...@gmail.com] Sent: martes, 27 de febrero de 2018 22:29 To: Jos Koot Cc: Racket Users Subject: Re: [racket-users] Understanding 'curry' On Tue, Feb 27, 2018 at 2:46 PM, Jos Koot wrote: It