Module for writing to the console.
Type | Description |
Function or value | Description |
|
|
|
|
|
Example
let msg = Console.Info |> Console.message "Hello " |> Console.appendPart (Console.Text "world!") |
|
Example
let msg = Console.Info |> Console.message "Hello " |> Console.appendParts [ Console.Text "world!" ] |
|
|
Full Usage:
createWriter outputType verbosity
Parameters:
OutputType
-
The OutputType of the console.
verbosity : Verbosity
-
The Verbosity of the console.
Returns: IWriter
The new IWriter.
|
|
Full Usage:
error text
Parameters:
string
-
The error text.
Returns: Message
The new message.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Example
let msg = Console.Info |> Console.messageParts Console.infoColor [ Console.Text "Hello " Console.Colorized ("world!", Console.Yellow) ] |
|
|
|
|
Full Usage:
success text
Parameters:
string
-
The success text.
Returns: Message
The new message.
|
|
|
|
|
|
|