syndicate-2017/racket/syndicate/tests/boop.rkt

13 lines
232 B
Racket

#lang syndicate/actor
(dataspace
(spawn (on (message "hello")
(printf "got hello\n")))
(spawn (assert "I am here")
(on-start (printf "hello\n")
(send! "hello"))))
#;(dataspace
(send! 5))