From 315dc4c9ee1afb3fc4c83b59b16e9d32fa4b271e Mon Sep 17 00:00:00 2001 From: Anil Madhavapeddy Date: Fri, 10 May 2024 16:41:46 +0100 Subject: [PATCH] update README --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index b480b47..d39616a 100644 --- a/README.md +++ b/README.md @@ -38,12 +38,12 @@ The original implementation of Multicore OCaml allowed a user to `Obj.clone_cont ## Running the examples -To run the examples with OCaml, be sure to install [Opam with these instructions](https://opam.ocaml.org/doc/Install.html). +To run the examples with OCaml, be sure to install [Opam with these instructions](https://opam.ocaml.org/doc/Install.html). These examples use the new effect syntax introduced with OCaml 5.3 and onwards. If you wish to see the examples which used the underlying effect functions directly, please checkout the `5.1.1` tag of this repository instead. ```bash -# After cloning this repository, create a 5.1 switch +# After cloning this repository, create a 5.3 switch opam update -opam switch create 5.1.1 +opam switch create 5.3.0+trunk opam install . --deps-only ```