User Jon Harrop - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T00:23:38Zhttp://stackoverflow.com/feeds/user/13924http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/170914/f-books-question/1604693#16046930Answer by Jon Harrop for F# books questionJon Harrop2009-10-22T02:14:21Z2009-10-22T02:14:21Z<p>F# for Scientists (2007) covered the research version of F# with Visual Studio 2005. My new book <a href="http://www.ffconsultancy.com/products/fsharp%5Ffor%5Ftechnical%5Fcomputing/?so" rel="nofollow">F# for Technical Computing</a> (2009) covers the May 2009 CTP release of F# with Visual Studio 2008. I am updating it for the latest October CTP release and it will remain the most up-to-date book.</p>
<p>My books are aimed at technical users who want an explanation of the language along with practical examples demonstrating how each feature can be used to solve real problems. For example, my book covers the spawning of interactive 2D and 3D graphics from an F# interactive session using WPF, and covers the design and implementation of high-performance parallel programs using the TPL with the example of QR decomposition.</p>
<p>In contrast, Expert F# is a thorough survey of the language itself with fewer practical examples.</p>
http://stackoverflow.com/questions/1475741/whats-the-difference-between-functors-and-generics/1586234#15862340Answer by Jon Harrop for What's the difference between functors and "generics"Jon Harrop2009-10-18T22:35:24Z2009-10-18T22:35:24Z<p>You can curry functors.</p>
http://stackoverflow.com/questions/1310114/erlang-vs-ocaml-best-niche-to-fit/1586198#1586198-1Answer by Jon Harrop for Erlang vs OCaml (best niche to fit)Jon Harrop2009-10-18T22:25:55Z2009-10-18T22:25:55Z<p>OCaml is a <em>lot</em> faster than Erlang. Given that you're into "high-performance computing" that completely rules out Erlang.</p>
http://stackoverflow.com/questions/1287318/how-to-use-multicores-in-ocaml-to-do-monte-carlo-simulations/1586180#15861801Answer by Jon Harrop for How to use multicores in Ocaml to do Monte Carlo simulations?Jon Harrop2009-10-18T22:19:10Z2009-10-18T22:19:10Z<p>Use the following <code>invoke</code> combinator to apply a function to a value in another (forked) process and then block waiting for its result when the <code>()</code> value is applied:</p>
<pre><code> let invoke (f : 'a -> 'b) x : unit -> 'b =
let input, output = Unix.pipe() in
match Unix.fork() with
| -1 -> (let v = f x in fun () -> v)
| 0 ->
Unix.close input;
let output = Unix.out_channel_of_descr output in
Marshal.to_channel output (try `Res(f x) with e -> `Exn e) [];
close_out output;
exit 0
| pid ->
Unix.close output;
let input = Unix.in_channel_of_descr input in
fun () ->
let v = Marshal.from_channel input in
ignore (Unix.waitpid [] pid);
close_in input;
match v with
| `Res x -> x
| `Exn e -> raise e
</code></pre>
http://stackoverflow.com/questions/1150002/how-is-the-current-performance-of-the-mono-virtual-machine/1573626#15736261Answer by Jon Harrop for How is the current performance of the Mono virtual machine?Jon Harrop2009-10-15T16:45:06Z2009-10-15T16:45:06Z<p>I <a href="http://flyingfrogblog.blogspot.com/2009/01/mono-22.html" rel="nofollow">benchmarked</a> Mono 2.0 and 2.2 earlier this year using <a href="http://math.nist.gov/scimark2/" rel="nofollow">SciMark2</a> and found that Mono's performance had increased slightly but it is still far slower than most other VMs.</p>
http://stackoverflow.com/questions/380733/mono-performance/1573524#1573524-1Answer by Jon Harrop for Mono performanceJon Harrop2009-10-15T16:29:20Z2009-10-15T16:34:28Z<p>I <a href="http://flyingfrogblog.blogspot.com/2009/01/mono-22.html" rel="nofollow">benchmarked Mono 2.2 against various other VMs including OCaml, LLVM, .NET and Java</a>:</p>
<p><a href="http://2.bp.blogspot.com/%5FNMRkpon4Ps0/SYNY8YtzTCI/AAAAAAAAACg/Bkjli4JV-NU/s1600-h/scimark2%5Findividual.gif" rel="nofollow"><img src="http://2.bp.blogspot.com/%5FNMRkpon4Ps0/SYNY8YtzTCI/AAAAAAAAACg/Bkjli4JV-NU/s1600-h/scimark2%5Findividual.gif" alt="Mono 2.2 vs OCaml vs .NET vs LLVM vs JDK" /></a></p>
<p>In summary, Mono 2.2 is better than Mono 2.0 but is still usually a <em>lot</em> slower than almost everything else.</p>
http://stackoverflow.com/questions/1054763/f-is-there-no-ui-like-wpf-for-it/1510988#15109880Answer by Jon Harrop for F#: is there no UI (like WPF) for it?Jon Harrop2009-10-02T17:59:49Z2009-10-02T17:59:49Z<p>We sell a commercial library called <a href="http://www.ffconsultancy.com/products/fsharp%5Ffor%5Fvisualization/?so" rel="nofollow">F# for Visualization</a> that uses WPF exclusively to provide interactive graphics with typeset mathematics from your F# code:</p>
<p><img src="http://www.ffconsultancy.com/products/fsharp%5Ffor%5Fvisualization/images/help%5Fbig.gif" alt="alt text" /></p>
<p>Not a conventional GUI but a GUI nonetheless!</p>
http://stackoverflow.com/questions/1294128/obsolete-or-changed-functionality-from-f-1-9-6-3-to-1-9-6-16-the-2010-beta-and/1482446#1482446-1Answer by Jon Harrop for Obsolete or Changed functionality from f# 1.9.6.3 to 1.9.6.16 (the 2010 beta and 2008 compatible release)Jon Harrop2009-09-26T23:56:07Z2009-09-26T23:56:07Z<p><a href="http://www.ffconsultancy.com/products/fsharp%5Ffor%5Ftechnical%5Fcomputing/?so" rel="nofollow"><em>F# for Technical Computing</em></a> is the only book to cover the latest version of F# (and WPF, and the TPL, and ...).</p>
<p>I believe second editions of Expert F# and Foundations of F# are in the works.</p>
http://stackoverflow.com/questions/262232/concurrent-data-structure-design/1462314#14623140Answer by Jon Harrop for Concurrent data structure designJon Harrop2009-09-22T20:14:12Z2009-09-22T20:14:12Z<p>FWIW, this is trivial to solve if you have a garbage collector. In F#, for example, you can just use a mutable reference to a linked list or purely functional map (balanced binary tree) without any locks. This works because the data structures are immutable and writing a reference (to update after a write) is atomic so concurrent readers are guaranteed to see either the old or new data structure but never corruption. If you have multiple writers then you can serialize them.</p>
<p>However, this is much harder to solve in C++...</p>
http://stackoverflow.com/questions/979084/what-features-would-you-add-remove-or-change-in-f/1255841#12558411Answer by Jon Harrop for What features would you add, remove or change in F#?Jon Harrop2009-08-10T16:21:36Z2009-08-10T16:21:36Z<p>Typesetting and visualization both in the source editor in Visual Studio and in interactive sessions. I want typeset maths and graphics in my code, comments and produced as output. Also, I want structured source code with collapsible headings and subheadings.</p>
http://stackoverflow.com/questions/979084/what-features-would-you-add-remove-or-change-in-f/1255825#12558250Answer by Jon Harrop for What features would you add, remove or change in F#?Jon Harrop2009-08-10T16:18:55Z2009-08-10T16:18:55Z<p>Proper tools for non-#light syntax, like autoindentation.</p>
http://stackoverflow.com/questions/39492/where-can-f-actually-save-time-and-money/1252683#12526831Answer by Jon Harrop for Where can F# actually save time and money?Jon Harrop2009-08-10T00:31:48Z2009-08-10T00:31:48Z<p>We have had great success using F# in industry for everything from web analytics to scientific computing and visualization. F# really pays dividends when your code is dealing with complicated data structures and algorithms. Most notably, manipulating trees and tree-based data structures in a breeze with F# thanks to pattern matching over variant types and active patterns.</p>
http://stackoverflow.com/questions/550371/plotting-with-c/1213322#1213322-1Answer by Jon Harrop for Plotting with C#Jon Harrop2009-07-31T15:48:50Z2009-07-31T15:48:50Z<p>FWIW, you probably want to look at <a href="http://www.ffconsultancy.com/products/fsharp%5Fjournal/free/introduction.html?so" rel="nofollow">F#</a> instead of C# in the context of technical computing because <a href="http://www.ffconsultancy.com/products/fsharp%5Fjournal/free/introduction.html?so" rel="nofollow">F#</a> is specifically designed for that purpose. However, I developed my own commercial plotting library because I was not satisfied with anything freely available on .NET.</p>
http://stackoverflow.com/questions/125516/managed-language-for-scientific-computing-software/1213276#1213276-1Answer by Jon Harrop for Managed language for scientific computing softwareJon Harrop2009-07-31T15:42:46Z2009-07-31T15:42:46Z<p>The short answer is that you can control the memory and performance of programs written in managed languages by choosing a suitable language (like <a href="http://www.ffconsultancy.com/products/ocaml%5Fjournal/free/introduction.html?so" rel="nofollow">OCaml</a> or <a href="http://www.ffconsultancy.com/products/fsharp%5Fjournal/free/introduction.html?so" rel="nofollow">F#</a>) and learning how to optimize in that language. The long answer requires a book on the specific language you are using, such as <a href="http://www.ffconsultancy.com/products/ocaml%5Ffor%5Fscientists/?so" rel="nofollow">OCaml for Scientists</a> or <a href="http://www.ffconsultancy.com/products/fsharp%5Ffor%5Fscientists/?so" rel="nofollow">F# for Scientists</a>.</p>
<p>The subjects you need to learn about are algorithmic optimizations, low-level optimizations, data structures and the internal representation of types in your chosen language. If you are writing parallel algorithms then it is also particularly important to learn about cache coherence.</p>
http://stackoverflow.com/questions/966249/scientific-math-with-functional-languages/1212607#1212607-1Answer by Jon Harrop for Scientific math with functional languages?Jon Harrop2009-07-31T13:42:46Z2009-07-31T13:42:46Z<p>Excellent question!</p>
<p>I have been one of the few pioneers of this field for several years now and we are only recently reaching the point where it is possible to get Fortran-like performance and Python-like brevity at the same time for a wide range of problems. Having examined all of the available functional languages and their implementations in great detail, I decided to focus my efforts on the statically-typed impure functional languages: the open source <a href="http://www.ffconsultancy.com/products/ocaml%5Fjournal/free/introduction.html" rel="nofollow">OCaml programming language</a> and <a href="http://www.ffconsultancy.com/products/fsharp%5Fjournal/free/introduction.html" rel="nofollow">Microsoft's F# programming language</a> for .NET.</p>
<p>My book <a href="http://www.ffconsultancy.com/products/ocaml%5Ffor%5Fscientists/?so" rel="nofollow">OCaml for Scientists</a> covers scientific computing with the <a href="http://www.ffconsultancy.com/products/ocaml%5Fjournal/?so" rel="nofollow">OCaml programming language</a> using Linux or Mac OS X. My book <a href="http://www.ffconsultancy.com/products/fsharp%5Ffor%5Fscientists/?so" rel="nofollow">F# for Scientists</a> covers scientific computing with <a href="http://www.ffconsultancy.com/products/fsharp%5Fjournal/?so" rel="nofollow">Microsoft's F# programming language</a> using Windows and Visual Studio. My company also sells <a href="http://www.ffconsultancy.com/products/fsharp%5Ffor%5Fnumerics/?so" rel="nofollow">F# for Numerics</a> and <a href="http://www.ffconsultancy.com/products/fsharp%5Ffor%5Fvisualization/?so" rel="nofollow">F# for Visualization</a> libraries that are written entirely in F# and make extensive use of functional programming both internally to improve brevity, clarity and maintainability and also externally to make the library easier to use. For example, first-class functions allow you to plot graphs really easily, e.g. ploting the sine function:</p>
<pre><code>Plot([Function sin], (-5., 5.))
</code></pre>
<p>F# for Visualization will even attempt to visualize any value of any type so <a href="http://fsharpnews.blogspot.com/2009/06/f-for-visualization-0400-released.html" rel="nofollow">you can give it a matrix of arbitrary-precision rationals and it will display the result as typeset mathematics</a>.</p>
<p>We have had great success writing code for scientific computing in a functional style in both the OCaml and F# languages. In particular, F# makes it easy to write high performance parallel code that is generic without any performance penalty for abstraction. So you can implement QR decomposition that works for matrices of any type (single precision, double precision, complex or even symbolic!) and even <a href="http://flyingfrogblog.blogspot.com/2009/07/ocaml-vs-f-qr-decomposition.html" rel="nofollow">beat the performance of vendor-tuned libraries like the Intel MKL</a>!</p>
<p>Finally, I should note that Mathematica went some way to blazing this trail long before I did. However, their solution was to combine a huge standard library of numerical and symbolic functions written in C with a conventional imperative style and provide a rather rudimentary functional programming language to call those functions. The main disadvantage of their approach is that general code written in Mathematica (i.e. where the time is not spent mostly in their standard library) is around 1,000x slower than C.</p>
http://stackoverflow.com/questions/142985/is-a-program-f-any-more-efficient-execution-wise-than-c/215919#21591925Answer by Jon Harrop for Is a program F# any more efficient (execution-wise) than C#?Jon Harrop2008-10-19T02:45:37Z2009-07-20T05:00:55Z<p>F# provides some performance-related features that can make a difference.</p>
<p>Firstly, the implementation of delegates on .NET is currently quite inefficient and, consequently, F# uses its own FastFunc type for high-performance first-class functions.</p>
<p>Secondly, F# uses .NET metadata to convey inline functions so that they can be exported across APIs and, of course, that can dramatically improve performance in certain circumstances. Moreover, F#'s inlining allows functions passed as arguments to higher-order functions to be completely inlined and type specialized. Our <a href="http://www.ffconsultancy.com/products/fsharp%5Ffor%5Fnumerics/" rel="nofollow">F# for Numerics</a> library makes extensive use of this feature to ensure that per-type functions such as comparison are specialized, giving performance in <a href="http://flyingfrogblog.blogspot.com/2009/07/ocaml-vs-f-burrows-wheeler.html" rel="nofollow">F# up to 2,350x faster than the equivalent C#</a> (!). In fact, some of our numerical routines are consistently several times faster than vendor-tuned Fortran in libraries like the Intel MKL.</p>
<p>Finally, pattern matching can be extremely laborious to express in C# because the language lacks pattern matching but it is almost impossible to maintain optimized C# code equivalent to many non-trivial pattern matches. In contrast, the F# compiler aggressively optimizes pattern matches during compilation.</p>
<p>Conversely, the C# compiler may still be better at optimizing computations over value types (e.g. complex arithmetic) and has "goto" which can be more efficient than anything currently available in F#.</p>
<p>Cheers,
Jon Harrop.</p>
http://stackoverflow.com/questions/1116974/what-functional-language-implementations-allow-threads-to-run-in-parallel3What functional language implementations allow threads to run in parallel? Jon Harrop2009-07-12T21:30:57Z2009-07-13T00:50:25Z
<p>The OCaml GC imposes a global lock that prevents mutators (threads) from running in parallel although they can run concurrently (interleaved). I believe the same is true of SML/NJ and MLton but not PolyML, GHC, F#, Clojure and Scala.</p>
<p>What other functional language implementations allow threads to run in parallel?</p>
http://stackoverflow.com/questions/1116982/what-typeset-programming-languages-exist1What typeset programming languages exist?Jon Harrop2009-07-12T21:32:59Z2009-07-12T22:05:40Z
<p>Mathematica's notebook front end has provided a hugely productive next-generation development environment for over 13 years, particularly suited to technical computing but also more widely applicable.</p>
<p>What other languages have IDEs that allow code to be typeset and have inline graphics?</p>
http://stackoverflow.com/questions/255442/which-parser-generator-to-teach-my-students/1091998#10919980Answer by Jon Harrop for Which parser generator to teach my students?Jon Harrop2009-07-07T12:22:49Z2009-07-07T12:22:49Z<p>OCaml has a fantastic set of parser generators. <a href="http://www.ffconsultancy.com/ocaml/benefits/parsing.html" rel="nofollow">Here</a> are some simple examples.</p>
<p>JavaCC is also quite good.</p>
<p>I would strongly recommend avoiding C (and C++) for this purpose because they are extraordinary painful in this context.</p>
http://stackoverflow.com/questions/837676/invalid-il-code-f/1055869#1055869-3Answer by Jon Harrop for Invalid IL Code - F#Jon Harrop2009-06-28T21:53:31Z2009-06-28T21:53:31Z<p>Mono is extremely buggy and <a href="http://flyingfrogblog.blogspot.com/2009/01/mono-does-not-support-tail-calls.html" rel="nofollow">leaks stack space</a> and <a href="http://flyingfrogblog.blogspot.com/2009/01/mono-22-still-leaks-memory.html" rel="nofollow">leaks heap space</a> due to the lack of proper tail recursion and accurate garbage collection, respectively. Consequently, I have found F# to be virtually unusable on Mono. Hopefully the open source world will reinvent a production-quality language-agnostic VM with these kinds of basic features but, for now, they are a decade behind the state-of-the-art that is .NET.</p>
http://stackoverflow.com/questions/277812/functional-languages-with-concurrent-garbage-collectors1Functional languages with concurrent garbage collectors?Jon Harrop2008-11-10T13:02:56Z2009-06-10T12:26:51Z
<p>Microsoft's new F# programming language provides the powerful combination of functional programming (first-class lexical closures and tail calls) with an efficient concurrent garbage collector that makes it easy to leverage multicores.</p>
<p>OCaml, Haskell, Erlang and all free Lisp and Scheme implementations that I know of do not have concurrent GCs. Scala and Clojure have a concurrent GC but no tail calls.</p>
<p>So there appear to be no open source programming languages that combine these features. Is that correct?</p>
http://stackoverflow.com/questions/71157/anyone-got-standalone-option-to-work-in-f-ctp/901597#901597-1Answer by Jon Harrop for Anyone got --standalone option to work in F# CTP?Jon Harrop2009-05-23T14:11:19Z2009-05-23T14:11:19Z<p>This has been a pet hatred of mine for a long time (it has been broken in every CTP release ever including the latest 1.9.6.16 May 2009 release). The "solution" is essentially to write your own build system that is not broken.</p>
<p>This is a real problem for me because I have accumulated hundreds of great F# programs that I would like to put on our site but it takes hours to build each one into a standalone executable.</p>
http://stackoverflow.com/questions/825858/extract-single-element-from-list-in-f/897509#8975091Answer by Jon Harrop for Extract single element from list in F#Jon Harrop2009-05-22T12:01:39Z2009-05-22T12:01:39Z<p>Use this:</p>
<pre><code>> let only s =
if not(Seq.isEmpty s) && Seq.isEmpty(Seq.skip 1 s) then
Seq.hd s
else
raise(System.ArgumentException "only");;
val only : seq<'a> -> 'a
</code></pre>
http://stackoverflow.com/questions/288157/fast-element-lookup-for-a-functional-languagehaskell/854627#854627-2Answer by Jon Harrop for Fast element lookup for a functional language(Haskell)Jon Harrop2009-05-12T20:10:24Z2009-05-12T20:10:24Z<p>Assuming this is a practical question and not homework, you really want to use arrays if at all possible because they will be a <em>lot</em> faster in practice. For a significant range of N, you can even use the arrays purely functionally (i.e. copying all elements on update) and it will still be faster than any purely functional solution. Beyond that, use a very wide tree with arrays of children at nodes.</p>
http://stackoverflow.com/questions/810409/haskell-or-standard-ml-for-beginners/854511#854511-1Answer by Jon Harrop for Haskell or Standard ML for beginners?Jon Harrop2009-05-12T19:44:26Z2009-05-12T19:44:26Z<p>I am amazed you are not considering OCaml and F# given that they address so many of your concerns. Surely decent and helpful development environments are a high priority for learners? SML is way behind and F# is way ahead of all other FPLs in that respect.</p>
<p>Also, both OCaml and F# have list comprehensions.</p>
http://stackoverflow.com/questions/733082/questions-for-compiling-to-llvm/854281#8542811Answer by Jon Harrop for Questions for compiling to LLVM Jon Harrop2009-05-12T18:54:33Z2009-05-12T18:54:33Z<p>The problem lies with C++ and not LLVM.</p>
<p>Use a language designed for metaprogramming, like <a href="http://www.ffconsultancy.com/products/ocaml%5Fjournal/?so" rel="nofollow">OCaml</a>, and your compiler will be vastly smaller. For example, I described a <a href="http://groups.google.com/group/fa.caml/msg/5aee553df34548e2" rel="nofollow">complete programming language implementation including parser</a> that can compile the Fibonacci function (amongst other programs) and the whole compiler is under 100 lines of OCaml code using LLVM. I have also written a <a href="http://hlvm.forge.ocamlcore.org/" rel="nofollow">complete high-level garbage collected virtual machine</a> in under 1,000 lines of OCaml code using LLVM.</p>
http://stackoverflow.com/questions/179332/anyone-actually-using-f-in-production/215925#2159254Answer by Jon Harrop for Anyone Actually Using F# in Production?Jon Harrop2008-10-19T02:56:07Z2009-05-07T06:55:44Z<p>Yes. We have created products called <a href="http://www.ffconsultancy.com/products/fsharp%5Ffor%5Fvisualization/?so" rel="nofollow">F# for Visualization</a> and <a href="http://www.ffconsultancy.com/products/fsharp%5Ffor%5Fnumerics/?so" rel="nofollow">F# for Numerics</a> that turn F# into a high-performance interactive technical computing environment ideal for scientists and engineers. The largest-scale projects to have used F# are Microsoft's own third-party driver verifier (ported from OCaml), the TrueSkill part of Halo 3 and part of Live AdCenter.</p>
<p>We use F# to develop software for interactive technical computing, aimed at scientists and engineers. F# is excellent for this because it combines the benefits of the .NET platform with brevity and interactivity.</p>
<p>I don't think F# is a fad but I do think F# will draw new users to the .NET platform rather than steal market share from existing C# applications. I would recommend that a C# programmer learn as much as possible, not just F#, but I expect F# knowledge will become extremely valuable over the next 3 years.</p>
<p>Cheers,
Jon Harrop.</p>
http://stackoverflow.com/questions/179492/f-and-ocaml/215986#2159869Answer by Jon Harrop for F# and OCamlJon Harrop2008-10-19T04:03:33Z2009-05-07T06:51:17Z<p>I always describe F# as a cousin of OCaml because OCaml has many features that F# does not have and is never likely to get. F# is more closely related to the previous CAML language. In particular, F# has very limited support for abstraction and no support for structural typing (like OCaml's <a href="http://ocamlnews.blogspot.com/2008/11/object-oriented-programming-in-ocaml.html" rel="nofollow">objects</a> and <a href="http://ocamlnews.blogspot.com/2008/03/getting-most-out-of-static-typing.html" rel="nofollow">polymorphic variants</a>) at all.</p>
<p>Contrary to what some respondants have written, F# does have (limited) support for labeled ("named") and optional arguments.</p>
<p>However, these are all advanced features and you can certainly start getting to grips with the basic ideas behind small-scale OCaml-style functional programming using resources about OCaml. The first major difference you will discover is larger-scale problems like encapsulation and abstraction which are solved in completely different ways in OCaml and in F#. If you want to learn how to do that in F#, the only available literature is <a href="http://fsharpnews.blogspot.com/2009/05/purely-functional-data-structures.html" rel="nofollow">this article on purely functional data structures</a>.</p>
<p>EDIT: I have since discovered that OCaml's wonderful module system makes it easy to parameterize code over types (such as data structures) but the OOP alternatives are not only hideous but almost entirely unused on .NET. Moreover, when trying to write elegantly-parameterized data structures I hit dozens of bugs in the F# compiler because nobody has even attempted to do this before. The F# stdlib does contain some nice data structure implementations but virtually no reuse, i.e. it is a cut'n'paste job.</p>
<p>Cheers,
Jon Harrop.</p>
http://stackoverflow.com/questions/172863/anyone-have-experience-with-llvm/311003#3110037Answer by Jon Harrop for Anyone have experience with LLVM?Jon Harrop2008-11-22T07:22:34Z2009-05-07T06:44:47Z<p>I have been playing with LLVM on and off for many months now. I wrote two <a href="http://www.ffconsultancy.com/" rel="nofollow">OCaml Journal</a> articles covering the use of LLVM from the <a href="http://www.ffconsultancy.com/" rel="nofollow">OCaml</a> programming language. That is particularly interesting because the OCaml language is ideal for writing compilers and has a wealth of powerful and mature tools and libraries for parsing and so on.</p>
<p>Overall, my experience has been extremely positive. LLVM does what it says on the tin and is very easy to use. The performance of the generated code is superb. One of the programs I wrote was a simple little Brainf*ck compiler that generates some of the fastest executables of any compiler I tested (including GCC).</p>
<p>I have only two gripes with LLVM. Firstly, it uses abort() whenever anything goes wrong instead of raising an exception. This was a deliberate design decision by its authors who are striving to remove all uses of exceptions from LLVM but it makes it impossible to get backtraces from OCaml when trying to debug a compiler that uses LLVM: your program just dies with a textual explanation from LLVM but no clue as to where the error occurred in your source. Secondly, LLVM's compiled library is monstrously big (20Mb). I assume this is due to the bloat incurred by C++ but it makes compilation painfully slow.</p>
<p>EDIT: My work on LLVM culminated in the creation of a high-performance high-level garbage-collected virtual machine. Free download <a href="http://hlvm.forge.ocamlcore.org/" rel="nofollow">here</a> and check out the corresponding <a href="http://flyingfrogblog.blogspot.com/2009/03/performance-ocaml-vs-hlvm-beta-04.html" rel="nofollow">benchmarks</a> (wow!). @Alex: I'll get that BF compiler up for you somewhere ASAP.</p>
http://stackoverflow.com/questions/669641/ocaml-types-with-different-levels-of-specificity/829238#8292381Answer by Jon Harrop for OCaml types with different levels of specificityJon Harrop2009-05-06T12:01:34Z2009-05-06T12:01:34Z<p>There are several possible solutions in OCaml depending how you're using the code you gave. The simplest is to combine the two types:</p>
<pre><code>type fooBar = { a: string; b: int; bar: char option }
</code></pre>
<p>Another solution is to replace the records with objects because objects support subtyping (and can have their types inferred so there is no need to declare a type!):</p>
<pre><code># let fsb = object
method a = "a"
method b = 3
end;;
val fsb : < a : string; b : int > = <obj>
# fsb#a, fsb#b;;
- : string * int = ("a", 3)
</code></pre>
http://stackoverflow.com/questions/1310114/erlang-vs-ocaml-best-niche-to-fit/1586198#1586198Comment by Jon Harrop on Erlang vs OCaml (best niche to fit)Jon Harrop2009-10-19T20:18:43Z2009-10-19T20:18:43ZOCaml does still have a global lock and that does mean that you cannot make efficient use of a multicore by using a shared mutable heap. However, the consequence is that you resort to using message passing between processes which is exactly what Erlang uses anyway. So OCaml is not at a disadvantage compared to Erlang in this respect (although it is nowhere near as fast on a multicore as something like F#). Message passing is easy in OCaml and there are lots of libraries and tools to help. There are a couple of major distributed concurrent software developments using OCaml today, e.g. Wink.http://stackoverflow.com/questions/269560/does-ocaml-have-general-map-reduce-functions/269851#269851Comment by Jon Harrop on Does OCaml have general map()/reduce() functions?Jon Harrop2009-10-18T22:49:19Z2009-10-18T22:49:19ZIf you want brevity then use objects: xs#map f. Either way you can easily express this in OCaml's type system.http://stackoverflow.com/questions/1055999/what-to-learn-lisp-or-ocaml-or/1056376#1056376Comment by Jon Harrop on What to learn? Lisp or OCaml or...?Jon Harrop2009-10-18T22:43:05Z2009-10-18T22:43:05ZScala is the "truest form" of functional programming? It doesn't even have tail calls...http://stackoverflow.com/questions/1055999/what-to-learn-lisp-or-ocaml-or/1056007#1056007Comment by Jon Harrop on What to learn? Lisp or OCaml or...?Jon Harrop2009-10-18T22:40:40Z2009-10-18T22:40:40ZF# does not run on Mono.http://stackoverflow.com/questions/1150002/how-is-the-current-performance-of-the-mono-virtual-machine/1155355#1155355Comment by Jon Harrop on How is the current performance of the Mono virtual machine?Jon Harrop2009-10-15T16:38:39Z2009-10-15T16:38:39ZMono's performance is awful and has improved only marginally and once in its entire life (with Mono 2.2).http://stackoverflow.com/questions/192090/how-do-you-design-a-functional-program/1428626#1428626Comment by Jon Harrop on How do you design a functional program?Jon Harrop2009-10-05T20:26:05Z2009-10-05T20:26:05ZObjects do not necessarily contain state. Look at functional object update in OCaml, for example.http://stackoverflow.com/questions/433258/why-isnt-ocaml-more-popular/433484#433484Comment by Jon Harrop on Why isn't OCaml more popular?Jon Harrop2009-09-10T05:07:34Z2009-09-10T05:07:34Z"Let me know when I can "cabal install" an OCaml library" - jrockway
Cabal is a proprietary package manager for Haskell and has nothing whatsoever to do with OCaml. Most OCaml programmers "apt-get install" their libraries thanks to hundreds of OCaml libraries with excellent support for the much more mature and robust apt package manager (compared to Cabal). These libraries have been heavily used in industry for years so your claim about OCaml's libraries is just uninformed bullshit.
http://stackoverflow.com/questions/307499/a-good-ocaml-parser/384551#384551Comment by Jon Harrop on A good ocaml parser?Jon Harrop2009-09-07T21:39:57Z2009-09-07T21:39:57ZI'm referring to camlp4, ocamllex, ulex, ocamlyacc, dpygen, menhir, ocfgc, aurochs and others. I found that ocamllex and ocamlyacc were generally several times faster at parsing than anything available for F# such as fslex, fsyacc and FParsec.http://stackoverflow.com/questions/1348896/what-is-the-best-functional-language-for-scientific-programming/1349547#1349547Comment by Jon Harrop on What is the best functional language for scientific programmingJon Harrop2009-09-07T21:26:03Z2009-09-07T21:26:03Z@jextee: F# is already widely used for scientitic computing.http://stackoverflow.com/questions/1348896/what-is-the-best-functional-language-for-scientific-programming/1348936#1348936Comment by Jon Harrop on What is the best functional language for scientific programmingJon Harrop2009-09-07T21:19:59Z2009-09-07T21:19:59ZErlang's parallel performance is awful.http://stackoverflow.com/questions/1348896/what-is-the-best-functional-language-for-scientific-programming/1348932#1348932Comment by Jon Harrop on What is the best functional language for scientific programmingJon Harrop2009-09-07T21:18:50Z2009-09-07T21:18:50ZHardly "one up" given the absence of a decent garbage collector in all existing Common Lisp implementations, both free and commercial.
http://stackoverflow.com/questions/1348896/what-is-the-best-functional-language-for-scientific-programming/1349510#1349510Comment by Jon Harrop on What is the best functional language for scientific programmingJon Harrop2009-09-07T21:16:50Z2009-09-07T21:16:50ZAs Pavel explained, this post is pure fanboi fantasy and you can easily find overwhelming evidence to the contrary. In reality, Haskell is nowhere near as fast as JVM- or CLR-based languages let alone C. If you're interested in learning the truth, check out the Burrows Wheeler Transform benchmark which is still orders of magnitude slower in Haskell than other languages including OCaml, F# and C. Even generic parallel quicksort is an unsolved problem in Haskell but trivial to implement in other languages.
http://stackoverflow.com/questions/126790/if-you-already-know-lisp-why-would-you-also-want-to-learn-f/587947#587947Comment by Jon Harrop on If you already know LISP, why would you also want to learn F#?Jon Harrop2009-08-17T18:58:37Z2009-08-17T18:58:37ZQuotations and metaprogramming in F# provide exactly the same functionality as QUOTE and EVAL in Lisp. Your statement that "F# has nothing like this" was incorrect.
The Lisp code '(+ 1 2) that you wrote is an example of a quotation. Hence you used the quotation mark when you wrote it. That may be written equivalently in F# as <@ 1+2 @>.
http://stackoverflow.com/questions/966039/which-companies-are-using-f-internally-and-what-are-they-using-it-for/987618#987618Comment by Jon Harrop on Which companies are using F# internally and what are they using it for?Jon Harrop2009-08-10T17:43:26Z2009-08-10T17:43:26ZVery interesting to see it used for in web development and in a healthcare company!
http://stackoverflow.com/questions/966039/which-companies-are-using-f-internally-and-what-are-they-using-it-for/966621#966621Comment by Jon Harrop on Which companies are using F# internally and what are they using it for?Jon Harrop2009-08-10T17:42:25Z2009-08-10T17:42:25ZHow many F# developers are there at Credit Suisse in London?