colored is a simple tool with which we can use to give color to the text.
gleam add colored
import colored
import gleam/io
pub fn main() {
io.println(colored.green("Colored"))
}
Further documentation can be found at https://hexdocs.pm/colored.
gleam run # Run the project
gleam test # Run the tests
gleam shell # Run an Erlang shell
- Add Background support
- Improve implementation
- Modularize the code