[racket-users] Mixing different #lang in one application

2020-02-10 Thread Sean Bailey
If I’m not mistaken, you can do `(require typed/racket/gui)` within a `#lang typed/racket` program. That’s thanks to the wonderful typed-racket-more package. Best, Sean > > On Feb 10, 2020 at 15:56, mailto:devosalai...@gmail.com)> > wrote: >

Re: [racket-users] Mixing different #lang in one application

2020-02-10 Thread Sam Tobin-Hochstadt
Yes, you can use Typed Racket together with racket/gui -- there's a `typed/racket/gui` module that you can `require`, and also you can simply write the handler functions in `#lang typed/racket` and `require` them into your GUI application code. Sam On Mon, Feb 10, 2020 at 3:56 PM Alain De Vos

[racket-users] Mixing different #lang in one application

2020-02-10 Thread Alain De Vos
I want to create a gui app. But then I need: #lang racket/gui But when i click a button i want type control in the functions so i need : #lang typed/racket Are there solutions ? -- You received this message because you are subscribed to the Google Groups "Racket Users" group. To unsubscribe