-
Updated
Oct 14, 2021 - OCaml
OCaml
OCaml is a general purpose industrial-strength programming language with an emphasis on expressiveness and safety, It is supporting functional, imperative and object-oriented styles.
Here are 1,968 public repositories matching this topic...
-
Updated
Nov 5, 2021 - TeX
-
Updated
Oct 31, 2021 - Haskell
-
Updated
Nov 18, 2021 - OCaml
Hi all,
Calling ocamlc or ocamlopt with a relative path to both a .mli and .ml only works if both reside in the current directory.
In the example below, I've creates test/a.ml and test/a.mli before calling ocamlopt a.mli a.ml. The problem is that after compiling test/a.mli file to test/a.cmi, the compiler tries to compile test/a.ml and looks for a.cmi in the current
-
Updated
Oct 2, 2021 - HTML
-
Updated
Aug 21, 2021
A formula like forall x1. forall. x2. exists x3. phi gets resugared to, and hence pretty printed as, forall x1 x2 x3. phi. The bug is in the uncurry function in FStar.Syntax.Reguar.fs.
-
Updated
Nov 17, 2021 - OCaml
-
Updated
May 20, 2019
-
Updated
Nov 18, 2021 - Jupyter Notebook
Dune systematically buffers the output of commands so that their output is not mixed up during parallel builds. However, this is not ideal for interactive commands that require direct access to the terminal.
Currently, the only workaround is to run dune with -j 1 --no-buffer which is not ideal since it completely disables parallelism and also require a specific dune invocation.
Another ide
-
Updated
Nov 18, 2021 - OCaml
-
Updated
Nov 14, 2021 - OCaml
This might be a good way to reconcile Dream, Piaf, and the rest of the "ecosystem" for esy users.
The branch can probably be maintained by constantly cherry-picking a single commit that adds esy.json and subtracts src/vendor. This could even be done in CI in the long term, but probably we'd rather get rid of src/vendor by actually upstreaming or releasing the protocol projects, instead.
Describe the bug
The following (wrong) simple source file triggers an assertion failure.
> mkdir /tmp/bug
> cd /tmp/bug
> cat - > prop.ml
type t
type prop
external set : t -> prop -> t -> unit = "caml_js_get"
let set_if_some o p = function None -> () | Some v -> set o p v
> ocamlc -c prop.ml
> js_of_ocaml compile prop.cmo
js_of_ocaml: You found a bug. Please report it at htt
-
Updated
Jun 12, 2017 - OCaml
-
Updated
Nov 16, 2021 - C
-
Updated
Mar 31, 2015 - OCaml
Created by Xavier Leroy
Released 1996
Latest release about 2 months ago
- Repository
- ocaml/ocaml
- Website
- ocaml.org
- Wikipedia
- Wikipedia
Since we also expose the Skia-bindings for a Canvas-like API I think it might be a good idea to start refactoring the API to utilise more named arguments e.g.
~x=..., ~y=....What do you others think?