Are there any Common Lisp implementations for .Net

2019-01-31 11:40发布

Are there any Common Lisp implementations for .Net?

7条回答
beautiful°
2楼-- · 2019-01-31 12:00

You could try this (Disclaimer, I haven't tested it myself). Also read this. that's where the link came from.

查看更多
We Are One
3楼-- · 2019-01-31 12:07

I haven't looked at it recently, but at least in the past there were some problems with fully implementing common lisp on the CLR, and I'd be a little surprised if this has changed. The issues come up with things like the handling of floats where .net/clr has a way to do it that is a) subtly incorrect b) disagrees with the ANSI standard for common lisp but c) doesn't allow any way around this. There are other similar problems. This stuff is fiddly and perhaps not too important, but means you are unlikely to see an ANSI CL on the CLR.

There are bigger issues, for example common lisp has a more powerful object system, so you can't map it 1:1 to object in the runtime (no MI, for one). This is ok, but leaves you with an inside/outside sort of approach which is what a common runtime tries to avoid...

Whether or not you'll see a common lisp-ish variant running on it is a different story, but I don't know of any at the moment (not that I've looked hard)

查看更多
祖国的老花朵
4楼-- · 2019-01-31 12:08

No, but you might want to consider IronScheme running on the DLR.

From the website:

IronScheme will aim to be a R6RS conforming Scheme implementation based on the Microsoft DLR.

IronScheme will be a complete rewrite of IronLisp incorporating lessons learnt while developing IronLisp.

查看更多
干净又极端
5楼-- · 2019-01-31 12:08
放荡不羁爱自由
6楼-- · 2019-01-31 12:11

Reconsidering this question from 2008 in 2010, you now might want to consider Clojure on the CLR. It's not Common Lisp, but it will be fairly easy to learn if you are coming from that direction. Interoperating with the CLR is dead-easy, it takes on more users every day and addresses several other important topics like concurrency. Might be worth investing some time in it. More CLR specific Clojure info here.

查看更多
叛逆
7楼-- · 2019-01-31 12:11

Full common lisp for .NET http://code.google.com/p/uabcl/

查看更多
登录 后发表回答