I want to advertise OCaml to beginners, and I am looking for good tutorials in English; not that you have only heard of, but that you have actually tried and found useful...
|
I quite like the book Developing Applications With Objective Caml -- I guess the title should be updated to mirror the 'OCaml' naming decision. It is old and therefore slightly out-of-date, but on only minor aspects -- eg., it presents the stream syntax as belonging to the core language, but it is now outsourced as a Camlp4 extension. The book is surprisingly complete, and there is a lot of meat already in the chapters 2, 3 and 4. This books covers a bit of system programming, but if it's what the reader is interested in, I would rather recommend the separate book Unix system programming in OCaml -- also translated into english by a community effort. Finally, if one want to discover the theoretical underpinnings of OCaml, If found the U3 book, Using, Understanding, and Unraveling the OCaml Language to be a great resource. But it's only for readers that already know about OCaml. PS: I have a very good opinion on Jason Hickey's introduction to Objective Caml as well, but I can't say I have read it in full, only glanced at it. That's the problem with "beginners" books, you can really read at most one good one. |
|||||
|
|
|
For me, the primary one is:
:) There is also great book for system programming in OCaml and cookbook-style resource here. |
||||
|
|
The tutorial I used when learning and the one I always recommend to beginners - ocaml-tutorial.org (mirrored at ocamlcore as original site went down). |
|||||||
|
|
Here is a book that is intended for newcomers to programming and also those who know some programming but want to learn programming in the function-oriented paradigm, or those who simply want to learn OCaml. An OCaml port of the book How to Think Like a Computer Scientist has been created by Nicolas Monje. According to the website, the PDF version of the book should be downloaded From the book:
|
|||||
|
|
I've just started with Ocaml, and these are tutorials that I find most helpful: Documentation and user’s manual - most useful and official Introduction to Caml - this one i used in my first days (recently) and it was really helpful because of it's simplicity |
|||
|
|
|
I thought Jason Hickey's Introduction to Objective Caml was very good (the only actual text on the language I've read, and how I started). INRIA's documentation is nice as well; and reading module signatures by themselves is quite instructive once you get the hang of it ;) Believe it or not, OCaml was the first language I (really) learned. |
|||
|
|