-
Recently found this when going down a rabbithole debugging decimal point support. `Integers.Unsigned.*.of_string` has incorrect behavior when handling strings of an invalid format. Below is an example…
-
Trying to load joy on utop throws this error:
```
#require "joy";;
The files /home/sudha/.opam/5.1.0/lib/joy/joy.cma
and /home/sudha/.opam/5.1.0/lib/ocaml/compiler-libs/toploop.cmi
disagree ove…
-
After installing `utop` with `opam` I have the following `~/.ocamlinit`:
```
(* ## added by OPAM user-setup for ocamltop / base ## 3ec62baf6f9c219ae06d9814069da862 ## you can edit, but keep this lin…
-
## Expected Behavior
If a file that has been loaded by utop has been changed (e.g. a local library), the source will be re-built and the latest version (if compilation is successful) will be avai…
-
this is the behavior of the bare ocaml toplevel. is this intended also for utop?
i noticed this when starting utop from my home directory, which contains a .ocamlinit. starting utop from any other …
-
I assume I'm doing something wrong here but I am baffled by this behaviour:
```
utop # ISO8601.Permissive.datetime_tz "2020-02-14T06:56:42Z";;
- : float * float option = (1581667002., Some 0.)
…
-
I trying to use `utop` from `nix-shell` [environment](https://nixos.org/nix/download.html) in Emacs.
I run it like `nix-shell--pure --quiet --run 'opam config exec -- dune utop . -- -emacs' $PROJEC…
-
In the standard OCaml toplevel, the following works, and is very useful when debugging e.g. ppx-related issues:
```
# # 123 "blarg"
;;
# (* lexer has set line/position and filename as of now *)
…
-
This is weird
I have a module that has this code
```ocaml
let point () =
Gg.V3.v
(Owl_stats_dist.std_uniform_rvs ())
(Owl_stats_dist.std_uniform_rvs ())
(Owl_stats_dist.std_unif…
-
Consider this `max_fail` example from the documentation https://c-cube.github.io/qcheck/0.18/qcheck-core/QCheck/index.html
(which says "The 15 smallest counter-example lists will be printed" 😉):
W…