vote up 9 vote down star
2

Related to my other CL question.

flag

55% accept rate

5 Answers

vote up 7 vote down check

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)

link|flag
You can use the MOP to adopt any object model you want. Not so sure about how to handle the numeric edge cases problem though. – jfm3 Sep 23 '08 at 17:56
@jfm3: yes, there is a lot you can do, but it won't get rid of the impedence mismatch between CLOS and the runtime's object system. Being a more general system, CLOS would still have to marshall stuff and out of the runtime as objects. You can make this livable using MOP, but not exactly native. – simon Sep 24 '08 at 22:01
vote up 5 vote down

If it's OK to go the other way around, you can access .Net from your favourite Lisp through Edi Weitz' RDNZL.

link|flag
vote up 3 vote down

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.

link|flag
The author of IronScheme is a user here: stackoverflow.com/users/15541/leppie – Kyle Cronin Sep 22 '08 at 16:29
vote up 2 vote down

L Sharp .NET

link|flag
vote up 0 vote down

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

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.