The clojureclr tag has no wiki summary.
29
votes
3answers
2k views
Clojure on the CLR
I'm interested in investigating Clojure on the CLR. I see that there is a port--but I'm always a bit leery of these second-class citizens (i.e. they don't have the stability or functionality of the ...
12
votes
2answers
714 views
Calling Clojure from .NET
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. ...
11
votes
2answers
693 views
How mature is clojure-clr? Can I use it with Mono?
How mature is clojure-clr? Does this support all the functions that clojure/jvm provides? Does it run on Mono without any problem?
I tried clojure-clr, and it seems to work fine with REPL. However, ...
7
votes
2answers
263 views
Is there any decent documentation or tutorials on ClojureCLR?
I've decided to look into Clojure (inspired by this book). After a bit of research I've learned that I may be able to take advantage of my .Net experience by using ClojureCLR rather than needing to ...
5
votes
3answers
227 views
Clojure record constructors not first class?
Apparently, you can't call apply with a record constructor:
(defrecord Foo. [id field])
(apply Foo. my-list)
fails at read time because it is not expecting Foo. in that place.
The only obvious ...
5
votes
1answer
219 views
Idiomatic way to write .NET interop function
I'm looking for a more idiomatic way, if possible, to write the following clojure code:
(import '(System.Net HttpWebRequest NetworkCredential)
'(System.IO StreamReader))
(defn ...
4
votes
2answers
116 views
Discovering lisp-family language .NET implementations
So basically I'm not comparing Scheme with Clojure here, I want to compare realizations. There are:
Clojure-clr which can be installed even using Visual Studio extension but it's still going a bit ...
4
votes
1answer
149 views
Can't call Clojure clr static method from C# application
I'm getting exception An object reference is required for the non-static field, method, or …
here is what am I trying to do :
;; Here's the program.clj file from a VsClojure project.
;; First thing ...
4
votes
2answers
185 views
Clojure - map or set with fixed value->key function?
I have quite a few records in my program that I end up putting in a map using one of their fields as key. For example
(defrecord Foo. [id afield anotherfield])
And then I'd add that to a map with ...
4
votes
2answers
245 views
Clojure: finding out if a collection is seq-able
So there's list?, seq?, vector?, map? and so on to determine what type of collection the argument is.
What's a good way of telling the difference between
a map (i.e. something that has key-value ...
3
votes
2answers
665 views
Editor for ClojureCLR
Is there an editor for ClojureCLR with REPL support and brace matching? I found a project which adds support for ClojureCLR to Visual Studio: vsClojure, but couldn't build it. Are there any other ...
3
votes
3answers
167 views
Clojure: Getting single value and map in structmap
I have a sequence of values that I get from somewhere else, in a known order. I also have one separate value. Both of these I want to put into a struct. I.e.
(defstruct location :name :id :type ...
2
votes
1answer
143 views
What does Clojure.Main.exe and Clojure.Compile.exe do?
I downloaded clojure-clr, and I found that it has two execution binaries - Clojure.Main.exe and Clojure.Compile.exe. I see that Clojure.Main.exe is REPL, and I'm not sure what Clojure.Compile.exe ...
2
votes
2answers
148 views
How can I use .net functions/classes to/from clojure-clr?
For example, how can I use System.Console.WriteLine from clojure-clr? In general, what's the rule for exporting/importing functions/classes from other languages such as C#/F# from/to Clojure-clr?
1
vote
1answer
63 views
How to associate project filetypes with project type in Visual Studio Extension (VSIX)
I'm trying to fix a bug in VsClojure whereby Visual Studio does not recognize a file with the extension .cljproj as a Clojure project. This only happens when VS is not already open; in other words, if ...
1
vote
2answers
41 views
Can't set CLOJURE_LOAD_PATH; getting TypeInitializationError from runtime
I'm trying to run Clojure on the CLR and getting stuck on some basic issues. Based on this question I am using the following code:
In program.clj:
(ns program
(:require [clojure.core])
...
0
votes
1answer
111 views
How to automate InternetExplorer with clojure-clr?
I'd like to use IE to open a web-page and retrieve its content from clojure-clr. I tried to translate the following C#-snippet to clojure, but could not load the DLL necessary to use SHDocVw (I don't ...