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?
|
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? |
|||
|
|
|
|
Clojure is a lisp, actualy lisp-1 family language. F# is practicaly OCaml adopted to .net platform. |
||
|
|
|
|
F# really corresponds to Scala on JVM. The closest thing to Clojure on .NET platform is IronScheme. |
||
|
|
|
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:
While clojure has more of a Lisp feel with emphasis on:
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. |
||||
|
|
|
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. |
||||||||||||
|