Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

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

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.

like image 708
user541686 Avatar asked Aug 03 '13 08:08

user541686


1 Answers

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.

like image 194
Luís Oliveira Avatar answered Nov 02 '22 12:11

Luís Oliveira