All Projects → OCamlPro → tryocaml

OCamlPro / tryocaml

Licence: other
An interactive tutorial to begin learning with OCaml

Programming Languages

javascript
184084 projects - #8 most used programming language
ocaml
1615 projects

NOTICE: this repository is deprecated; please see the Try OCaml reboot at https://gitlab.ocamlpro.com/OCamlPro/learn-ocaml instead.

the above is in fact the version that is now depoyed to https://try.ocamlpro.com

Overview

TryOCaml is the easiest way to learn how to code in OCaml language. A funny way to learn the language. It is available here:

http://try.ocamlpro.com/

TryOCaml is based on (http://ocsigen.org/js_of_ocaml/files/toplevel/index.html) built with js_of_ocaml (see http://ocsigen.org/js_of_ocaml/).

Requirements

Try it

$ opam remote add devel [email protected]:OCamlPro/opam-repo-dev.git
$ opam install js_of_ocaml.100
$ git submodule init
$ git submodule update
$ ./configure
$ make

Then, with your favorite browser launch tryocaml/index.html:

$ chromium-browser tryocaml/index.html

Contribute lessons/steps/fixes

Lessons are in the "lessons/" top directory.

Each lesson is a sub-directory "lessonN", where N is the lesson number, and contains a file "lesson.html", with a title in a <h3> tag on the first line, and a set of steps. Each step is a sub-directory "stepM" of "lessons/lessonN", where M is the step number in the lesson.

Each step is composed of two files:

  • "step.html": the text of the step. The first line MUST contain the step title, in a <h3> tag. Code that should be copied in the terminal should be in <code> tags.
  • "step.ml": the function testing if the step has been completed. It takes the user input (a string) and the compiler output (a string) as arguments, and returns a boolean, true if the user has succeeded, false otherwise. "step.ml" can directly use functions defined in "lessons/goodies.ml" (that is included, so NEVER use "open Goodies" or "Goodies.something), in particular the "find_in" function.

To recompile when you have done a modification:

$ make update-lessons

Failure to comply to the lesson/step specification will make the tryocaml/tutorial/make_lessons command fail.

If you want to debug at some point, you can type debug true in the terminal to see what the input and output strings are.

Once everything works, send a "pull request" via Github, or send us a patch. You can also come on #ocamlpro IRC channel to discuss with us.

Online

http://try.ocamlpro.com/

License

[GNU General Public License] (https://github.com/OCamlPro/tryocaml/blob/master/tryocaml/LICENSE.GPL)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].