Coding Guidelines
The prelude
library
We use the prelude
library to hide dangerous functions from the standard library.
It is automatically opened in the whole project.
More than dangerous functions, this library also hide some modules for which better alternatives exists.
For instance, all system interactions are done using Bos
and all the formatting is done with Fmt
.
Printing
Read the Logs basics and in particular, the usage conventions.