Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
是否有允许我在 Scheme 中编写 CSP 样式程序的 egg 或一些库?CSP 风格是指在 Go (go/channel/select) 或 Clojure 的 core.async 中实现的内容。
Chicken Scheme有一个频道彩蛋,你可以试试。
$ chicken-install -s channel
鸡现在也有一个gochan蛋(我写的)。它比channel简单得多,但channel似乎有点复杂,我不确定它的测试效果如何。
$ chicken-install -s gochan $ csi -R gochan -p '(gochan-receive (gochan "hello world"))' hello world