# Functions
Btoc returns a Checkmark from a boolean, red ✘ if the argument is false, a green ✔ otherwise.
ForBool creates a Question with a bool as target value.
ForPassword creates a Question with a sting as target value.
ForString creates a Question with a string as target value.
Headers is an option to store the header texts in the table.
IntToCheckmark returns a string with ansi color instruction characters: a red ✘ if the argument is zero, a green ✔ otherwise.
Itoc returns a Checkmark from an int.
NewTable creates a new table and applies the given Options to it.
Stoc returns a Checkmark from a string.
StringToCheckmark returns a string with ansi color instruction characters: a red ✘ if the argument is "0", a yellow ? if the argument is "", a green ✔ otherwise.
# Variables
Cyan can be used as Sprintf, where the output it wrapped in escape characters which will render the text cyan in terminals.
Green can be used as Sprintf, where the output it wrapped in escape characters which will render the text green in terminals.
Red can be used as Sprintf, where the output it wrapped in escape characters which will render the text red in terminals.
Yellow can be used as Sprintf, where the output it wrapped in escape characters which will render the text yellow in terminals.
# Interfaces
Converter converts strings to any type.