Scheme and concurrent programming

Hello,
I don’t know if this is the right place to ask, but why scheme doesn’t support concurrent programming?

Matteo

Racket provides concurrency!

See 18 Concurrency and Synchronization

While its roots are in Lisp and Scheme, Racket isn’t Scheme.

That said, it looks like SRFI-18 adds concurrency to Scheme.

This blog post may be of interest: Coroutines, exceptions, time-traveling search, generators and threads: Continuations by example

S.

1 Like

That said, it looks like SRFI-18 adds concurrency to Scheme.

Thank you!

This blog post may be of interest: Coroutines, exceptions, time-traveling search, generators and threads: Continuations by example

Very interesting!

Matteo