Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3497050
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T12:19:24+00:00 2026-05-18T12:19:24+00:00

I have been spending some time playing with Clojure-CLR. My REPL is working, I

  • 0

I have been spending some time playing with Clojure-CLR. My REPL is working, I can call .NET classes from Clojure, but I have not been able to figure out calling compiled Clojure dlls from C# classes.

I have been trying to adapt the java example found here:

I removed the :name line from the top of the example because it causes a “Duplicate key: :name” error. Without the “:name” line, the code compiles fine and I can add the reference in Visual Studio, but I can’t seem to figure out how to use the code. I’ve tried a variety of ‘using’ statements, but so far nothing has worked. Can anyone provide a little insight on this? Here is the Clojure code I am attempting to use.

(ns code.clojure.example.hello
  (:gen-class
   :methods [#^{:static true} [output [int int] int]]))

(defn output [a b]
  (+ a b))

(defn -output
  [a b]
  (output a b))
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T12:19:25+00:00Added an answer on May 18, 2026 at 12:19 pm

    I was able to get it to work doing the following:

    First I changed your code a bit, I was having trouble with the namespace and the compiler thinking the dots were directories. So I ended up with this.

    (ns hello
      (:require [clojure.core])
      (:gen-class
       :methods [#^{:static true} [output [int int] int]]))
    
    (defn output [a b]
      (+ a b))
    
    (defn -output [a b]
      (output a b))
    
    (defn -main []
      (println (str "(+ 5 10): " (output 5 10))))
    

    Next I compiled it by calling:

    Clojure.Compile.exe hello

    This creates several files: hello.clj.dll, hello.clj.pdb, hello.exe, and hello.pdb You can execute hello.exe and it should run the -main function.

    Next I created a simple C# console application. I then added the following references: Clojure.dll, hello.clj.dll, and hello.exe

    Here is the code of the console app:

    using System;
    
    namespace ConsoleApplication1
    {
        class Program
        {
            static void Main(string[] args)
            {
                hello h = new hello();
                System.Console.WriteLine(h.output(5, 9));
                System.Console.ReadLine();
            }
        }
    }
    

    As you can see, you should be able to create and use the hello class, it resides in the hello.exe assembly. I am not why the function “output” is not static, I assume it’s a bug in the CLR compiler. I also had to use the 1.2.0 version of ClojureCLR as the latest was throwing assembly not found exceptions.

    In order to execute the application, make sure to set the clojure.load.path environment variable to where your Clojure binaries reside.

    Hope this helps.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have been spending some time in debugging a programme which gives segmentation fault.
I have been working with Visual Studio (WinForm and ASP.NET applications using mostly C#)
I've been spending some time refactoring my C# code, and I'm struck by how
I've been spending some time looking at Phil Haack's article on Grouping Controllers very
Have been looking at the MVC storefront and see that IQueryable is returned from
Have been studying the file system related classes of Adobe AIR 1.5, but so
I have been working on a web services related project for about the last
I have been looking into IKVMing Apache's FOP project to use with our .NET
I have been working to deploy a relatively large Rails app (Rails 2.3.5) and
In an application I've been working on, I have to send a 256 x

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.