-
Updated
Sep 2, 2020 - 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,670 public repositories matching this topic...
-
Updated
Sep 14, 2020 - TeX
-
Updated
Sep 15, 2020 - TypeScript
-
Updated
Sep 19, 2020 - OCaml
-
Updated
Sep 20, 2020 - OCaml
-
Updated
Sep 17, 2020 - Clojure
-
Updated
Sep 15, 2020
Stabler gensym
This is very low prio, but it usually happens that when touching Prims or some other file high in the dependency graph, we get spurious diffs in many other files. Since we check-in the snapshot, and we need to have it up-to-date, we get very verbose commits when nothing relevant changed. Plus, when something did change, it's hard to spot.
Example: I removed a few lines in prims and get things
-
Updated
May 20, 2019
-
Updated
Sep 19, 2020 - OCaml
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
Sep 18, 2020 - OCaml
-
Updated
Sep 5, 2020 - OCaml
-
Updated
Jun 12, 2017 - OCaml
-
Updated
Mar 31, 2015 - OCaml
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
Sep 20, 2020 - C
-
Updated
Jul 30, 2020 - JavaScript
-
Updated
Sep 14, 2020 - OCaml
As marked in https://github.com/briskml/brisk/blob/master/examples/hacker-news/app/Story.re#L82, we'll need to transform incoming html.
<p> tags are not rendered with proper margin/padding by Cocoa in NSTextView by default, and instead of manually changing document attributes on ObjC bindings side, simply pre-processing html text and replacing paragraphs by newline characters seems more prefe
Created by Xavier Leroy
Released 1996
Latest release 20 days 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?