vote up 4 vote down star
1

What are the most significant differencies between the F# and Clojure ?

Which constructs has F# which Clojure does not have and vice versa?

Does F# have macros?

flag

5 Answers

vote up 0 vote down

Clojure is a lisp, actualy lisp-1 family language. F# is practicaly OCaml adopted to .net platform.

link|flag
vote up 0 vote down

If you want macros, you can use it with Boo or Nemerle.

link|flag
vote up 0 vote down

F# really corresponds to Scala on JVM. The closest thing to Clojure on .NET platform is IronScheme.

link|flag
ClojureCLR is still being worked on I believe. – Rayne May 27 at 19:40
vote up 17 vote down

Most of the differences will stem from the fact that F# is descended from ML while clojure is descended from lisp.

So F# has a more ML/OCaml/Haskell feel with emphasis on:

  • static typing
  • type inference
  • pattern matching

While clojure has more of a Lisp feel with emphasis on:

  • s-expressions
  • macros
  • closures

Also as Brian noted, F# is a .Net language while clojure is a JVM language so each will have access to a vast but different set of libraries.

link|flag
2  
There is ClojureCLR, in Clojure/contrib, but it's alpha at the moment. – Kurt Schelfthout May 28 at 8:04
vote up 3 vote down

One key difference is that F# is a .NET language, whereas Clojure runs on a JVM. Thus the deployments and supported platforms will be different.

Note that F# is supported by mono, however.

As for macros, I think you're out of luck.

link|flag
2  
And AFAIK there exists no platform that would run .NET but wouldn't run JVM. The other way round, there are many cases. So, Clojure is more generic while F# is more or less Microsoft specific. – Joonas Pulakka May 27 at 11:38
1  
@mad-j Yeah well. Mono fills much of that multi-platform space for .NET. And, the vanilla JVM does not run on android, for example. So Java is more or less Sun-specific? – Kurt Schelfthout May 28 at 8:10
2  
Hardly. Common on Windows/Linux/Mac for instance. – Brian Agnew May 28 at 11:24

Your Answer

Get an OpenID
or

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