Perchance to Scheme (2016)
hardmath123.github.io
Perchance to Scheme (2016)
1–10 of 82 posts
Re: Perchance to Scheme (2016)
#2> Oh, and one last thing. I feel it’s obligatory at this point for me to say, please don’t spend too much time researching Scheme dialects. Just pick Racket and start coding.
Re: Perchance to Scheme (2016)
#3The author concludes with: > Oh, and one last thing. I feel it’s obligatory at this point for me to say, please don’t spend too much time researching Scheme dialects. Just pick Racket and start coding.
It actually compiles to C and then to binaries for your specific platform.
Check it out: https://www.call-cc.org/
Re: Perchance to Scheme (2016)
#4The author concludes with: > Oh, and one last thing. I feel it’s obligatory at this point for me to say, please don’t spend too much time researching Scheme dialects. Just pick Racket and start coding.
I prefer Chicken Scheme, which recently just had a new release (version 5). It actually compiles to C and then to binaries for your specific platform. Check it out: https://www.call-cc.org/
Re: Perchance to Scheme (2016)
#5Are there any R6RS-conformant Schemes that are recommended?
Re: Perchance to Scheme (2016)
#6Re: Perchance to Scheme (2016)
#7Earlier quoted context omitted.
I prefer Chicken Scheme, which recently just had a new release (version 5). It actually compiles to C and then to binaries for your specific platform. Check it out: https://www.call-cc.org/
The fact that Chicken actually has a package manager and central repository is a big plus for me.
Re: Perchance to Scheme (2016)
#8A minor update: Now Chez Scheme is open source (Apache license) https://github.com/cisco/chezscheme
Re: Perchance to Scheme (2016)
#9I know this is a big controversial can of worms, but as a filthy casual who just happens to like Lisp, the idea of R6RS is pretty appealing to me. This post seems very much R5RS-oriented. Are there any R6RS-conformant Schemes that are recommended?
Re: Perchance to Scheme (2016)
#101) Gambit. Compiles to C. Interesting tools built on top are Termite (Erlang-like concurrency framework) and Lambdanative
2) TinyScheme - super minimalist embeddable scheme.
3) Kawa Scheme - on JVM. Much smaller and faster than Clojure when I used it last.
4) Bigloo - can compile to C & Java bytecode.
Note ChezScheme is now open source and has very good documentation.