racket/collects/tests/racket/embed-place.rkt
Matthew Flatt 481e061440 adjust `raco ctool --c-mods' and related to work with places
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
2012-01-19 13:14:02 -07:00

8 lines
101 B
Racket

#lang racket/base
(require racket/place)
(provide go)
(define (go ch)
(place-channel-put ch 42))