-2
votes
1answer
115 views
Passing Information from Perl to Java [closed]
Possible Duplicate:
How do I call java code from Perl ?
Possible duplicates of:
How do I call java code from Perl ? [closed]
How can I pass data from Perl t …
3
votes
2answers
729 views
Calling Java from Clojure
When I try to run the following code (from the REPL) in Clojure:
(dotimes [i 5]
(.start
(Thread.
(fn []
(Thread/sleep (rand 1000))
(println (format "Finished …
3
votes
3answers
761 views
How to convert from from java.util.Map to a Scala Map
A Java API returns a java.util.Map<java.lang.String,java.lang.Boolean>;. I would like to put that into a Map[String,Boolean]
So imagine we have:
var scalaMap : Map[String,B …
1
vote
1answer
185 views
Is it possible to call a C function from OCaml passing a huge array efficiently?
I'm considering the use of a combination between OCaml and C code in a new application. It seems that calling C code from Ocaml is simple:
external name : type = C-function-na …
5
votes
5answers
566 views
How can I pass data from Perl to Java?
I'm working on some Java <-> Perl interaction. I would like to know what the best way is to pass information from Perl to Java. (Great answers about Perl and Java here and here …
2
votes
2answers
583 views
About using F# to create a Matrix assembly usable from C#
There are no builtin matrix functions in C#, but there are in the F# powerpack.
Rather than using a third party or open source C# library, I wonder about rolling my own in F#, and …
2
votes
1answer
148 views
Polygot Programming is Coming? How?
I'd love to have the freedom to use various languages for the problems they work best for but I'm not sure how this can be accomplished today.
I have had a fair amount of success …
