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?

link|improve this question

feedback

2 Answers

up vote 3 down vote accepted

System.Console is loaded by default. You can simply use:

(System.Console/WriteLine "Hello World!")

Another example, using a static class:

(import (System.IO Path))
(println (Path/GetFullPath "."))
link|improve this answer
is it different from the Java type? or am I missing something? – iamcreasy May 25 '11 at 23:56
I don't think there is a difference, although I haven't looked into detail. – Maurits Rijk May 26 '11 at 9:11
feedback

in Java, instantiating the Date object, then calls its toString() method, you have to write like the following,

user=> (. (new java.util.Date) (toString))

It might help.

link|improve this answer
1  
While this example works, note that it can also be written as (. (new java.util.Date) toString) or (.toString (new java.util.Date)). – Torbjørn May 25 '11 at 17:40
feedback

Your Answer

 
or
required, but never shown

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