├── .gitignore ├── .ocamlformat ├── LICENSE ├── README.md ├── bin ├── broadcast.ml ├── dune ├── echo.ml └── unique_id.ml ├── dist-sys-challenge.opam ├── dune-project └── maelstrom ├── dune ├── maelstrom.ml └── maelstrom.mli /.gitignore: -------------------------------------------------------------------------------- 1 | _build 2 | -------------------------------------------------------------------------------- /.ocamlformat: -------------------------------------------------------------------------------- 1 | version=0.24.1 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLortex/ocaml-maelstrom/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLortex/ocaml-maelstrom/HEAD/README.md -------------------------------------------------------------------------------- /bin/broadcast.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLortex/ocaml-maelstrom/HEAD/bin/broadcast.ml -------------------------------------------------------------------------------- /bin/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLortex/ocaml-maelstrom/HEAD/bin/dune -------------------------------------------------------------------------------- /bin/echo.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLortex/ocaml-maelstrom/HEAD/bin/echo.ml -------------------------------------------------------------------------------- /bin/unique_id.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLortex/ocaml-maelstrom/HEAD/bin/unique_id.ml -------------------------------------------------------------------------------- /dist-sys-challenge.opam: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLortex/ocaml-maelstrom/HEAD/dist-sys-challenge.opam -------------------------------------------------------------------------------- /dune-project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLortex/ocaml-maelstrom/HEAD/dune-project -------------------------------------------------------------------------------- /maelstrom/dune: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLortex/ocaml-maelstrom/HEAD/maelstrom/dune -------------------------------------------------------------------------------- /maelstrom/maelstrom.ml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLortex/ocaml-maelstrom/HEAD/maelstrom/maelstrom.ml -------------------------------------------------------------------------------- /maelstrom/maelstrom.mli: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLortex/ocaml-maelstrom/HEAD/maelstrom/maelstrom.mli --------------------------------------------------------------------------------