Statically-typed dialect of Lisp with type inference, for Windows?

北战南征 提交于 2020-01-14 09:53:26

问题


Is there any statically-typed dialect of Lisp that performs type inference and is compatible with Windows?

I have found CMUCL but it doesn't seem to have a Windows-compatible version.


回答1:


Have a look at SBCL which descends from CMUCL. It has good support for static typing through type declarations, performs plenty of type inference, and runs on Windows.

It's very much dynamic by default, though. You might be interested in Typed Racket.




回答2:


Stalin is a free Scheme implementation doing type inference (for whole program optimization purposes) and having a Windows port

I confess I hate the name so much that I did not try it a lot.

Camlp5 Scheme syntax is a Scheme like syntax "preprocessor" for Ocaml (so has type inference). You should be able to run it on Windows.



来源:https://stackoverflow.com/questions/18031009/statically-typed-dialect-of-lisp-with-type-inference-for-windows

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!