Stdune.ConsoleManages the console
The console is a system than can report messages and a status to the user. It is usually the terminal the application is connected to, however it could be something else. This module allow to set a global backend for the application as well as composing backends.
module Backend : sig ... endThe main backend for the application
include Backend.Sval print_user_message : User_message.t -> unitFormat and print a user message to the console
val set_status_line : User_message.Style.t Pp.t option -> unitChange the status line
val print : User_message.Style.t Pp.t list -> unitprint paragraphs is a short-hand for:
print_user_message (User_message.make paragraphs) module Status_line : sig ... endThis module allows to buffer status updates so that they don't slow down the application