Naveen
Naveen

Reputation: 6008

are there any lisp implementations or 3rd party libraries that support dotnet or com interop

Any lisp environment supporting the following

  • 1. using com objects.
  • 2. acting as a com server...

    Upvotes: 2

    Views: 222

  • Answers (3)

    eric.christensen
    eric.christensen

    Reputation: 3231

    Racket and newLisp are also accessible from com.

    Upvotes: 0

    Vijay Mathew
    Vijay Mathew

    Reputation: 27164

    Allegro Common Lisp and IronScheme has built-in support for COM. You can get any Common Lisp that runs on Windows to talk to COM components or make it act as a COM server by using CFFI.

    Upvotes: 3

    Ken
    Ken

    Reputation: 756

    I don't know if it's COM, but Edi's RDNZL is "more or less a foreign function interface for .NET languages like C#".

    Upvotes: 2

    Related Questions