Category:OCaml Calendar Library: Difference between revisions

From Rosetta Code
Content added Content deleted
(basic page)
 
(how to use)
Line 4: Line 4:


Project page: http://forge.ocamlcore.org/projects/calendar/
Project page: http://forge.ocamlcore.org/projects/calendar/

=== How to use ===

When this library is installed, one can run a script in interpreted mode with this command line:

ocaml unix.cma str.cma -I +calendar calendarLib.cma script.ml

And to compile to native code:

ocamlopt unix.cmxa str.cmxa -I +calendar calendarLib.cmxa prog.ml -o prog

Or using findlib:

ocamlfind opt -package calendar -linkpkg prog.ml -o prog

To use it without installing it, one can open the source archive in <code>/tmp</code> for example, and then after compiling, just replace <code>+calendar</code> by <code>/tmp/calendar-2.03.1/target/</code> in the previous commands.

Revision as of 01:54, 9 November 2011

The OCaml Calendar Library is a library for handling dates and times in OCaml programs.

Homepage: http://calendar.forge.ocamlcore.org/

Project page: http://forge.ocamlcore.org/projects/calendar/

How to use

When this library is installed, one can run a script in interpreted mode with this command line:

ocaml unix.cma str.cma -I +calendar calendarLib.cma script.ml

And to compile to native code:

ocamlopt unix.cmxa str.cmxa -I +calendar calendarLib.cmxa prog.ml -o prog

Or using findlib:

ocamlfind opt -package calendar -linkpkg prog.ml -o prog

To use it without installing it, one can open the source archive in /tmp for example, and then after compiling, just replace +calendar by /tmp/calendar-2.03.1/target/ in the previous commands.

Pages in category "OCaml Calendar Library"

The following 3 pages are in this category, out of 3 total.