Any decent implementation of a scheme that has * no * threading libs?

I am considering which scheme to use.

I would like to use a circuit that has or can be compiled with support without streaming . I need to avoid layers that provide streaming libraries. I need an implementation that has no code for interpreter locks, etc. . What can be compiled in C is perfect. It will be only Unix. Chicken and gambit is my first choice with TinyScheme as an alternative strategy.

I want to use this scheme as a replacement for the ruby โ€‹โ€‹application that I have now. That's why it should be a decent scheme, it should have rich support for strings, hashes, regular expressions, dictionaries, etc.

Any such beast there?

+4
source share
1 answer

You can try Chibi Scheme or Larceny . I do not think that each of them has a thread. Chibi runs on a virtual machine, Larceny compiles into native code. I expect Larceny support for various libraries to be better.

0
source

All Articles