exercism / ocaml

Exercism exercises in OCaml.
https://exercism.org/tracks/ocaml
MIT License
94 stars 50 forks source link

Add mli interface files as readonly #462

Closed georgyo closed 1 year ago

georgyo commented 1 year ago

The type signature of what the tests expect are in the mli files, but we don't show them to the user in the web view. This can make it very tricky for a user to know the shape of the function they are tasked with creating. These files should not be modified by the user as that will likely break the tests.

As per: https://exercism.org/docs/building/tracks/config-json

these "editor" files are read-only, but will show them to the user.