zapashcanon 7367699058
All checks were successful
build / build (push) Successful in 57s
0.5
2025-01-30 17:10:58 +01:00
2025-01-20 03:40:16 +01:00
2024-07-17 14:08:44 +02:00
2024-12-27 19:46:26 +01:00
0.5
2025-01-30 17:10:58 +01:00
2024-07-17 14:08:44 +02:00
2024-07-17 14:08:44 +02:00

prelude

prelude is an OCaml library hiding some parts of the stdlib.

Installation

prelude can be installed with opam:

opam install prelude

If you don't have opam, you can install it following the how to install opam guide.

If you can't or don't want to use opam, consult the opam file for build instructions.

Quickstart

To add it to your library or executable, you simply need to depend on prelude, you can also pass a flag to the compiler to open it automatically:

(library
 (name my_amazing_library)
 (modules foo bar)
 (flags
  (:standard -open Prelude))
 (libraries prelude))

Prelude is re-exporting some dependencies such as fmt or bos, you should not need to explicitly add them to the libraries field or your dune file.

About

Description
No description provided
Readme
Languages
OCaml 93%
Dune 7%