
That is, the generated declare_modules() function registers the module-declaration code so that it is run in any new place, too. Merge to 5.2.1
8 lines
101 B
Racket
8 lines
101 B
Racket
#lang racket/base
|
|
(require racket/place)
|
|
|
|
(provide go)
|
|
|
|
(define (go ch)
|
|
(place-channel-put ch 42))
|