fermah-common 0.1.2

Fermah common utilities and types.
Documentation
use termion::color;

#[allow(clippy::print_literal)]
pub fn print_ascii() {
    println!(
        "{}{} {}{} {}",
        color::Fg(color::LightMagenta),
        r#"

    ⠀⠀⠀⠀⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⣿⠀⠀⠀   ███████╗███████╗██████╗ ███╗   ███╗ █████╗ ██╗  ██╗
    ⠀⠀⠀⠀⠀⠀⣿⣿⣿⠀⠀⠀⠀⣿⣿⣿⠀⠀⠀⠀⠀   ██╔════╝██╔════╝██╔══██╗████╗ ████║██╔══██╗██║  ██║
    ⠀⠀⠀⠀⠀⠀⣿⣿⣿⠀⠀⠀⠀⣿⣿⣿⠀⠀⠀⠀⠀   █████╗  █████╗  ██████╔╝██╔████╔██║███████║███████║
    ⠀⠀⠀⠀⠀⠀⣿⣿⣿⠀⠀⠀⠀⣿⣿⣿⠀⠀⠀⠀⠀   ██╔══╝  ██╔══╝  ██╔══██╗██║╚██╔╝██║██╔══██║██╔══██║
    ⠀⠀⠀⠀⠀⠀⣿⣿⣿⠀⠀⠀⠀⣿⣿⣿⠀⠀⠀⠀⠀   ██║     ███████╗██║  ██║██║ ╚═╝ ██║██║  ██║██║  ██║
    ⠀⠀⠀⣿⣿⣿⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⣿⣿⣿⠀⠀   ╚═╝     ╚══════╝╚═╝  ╚═╝╚═╝     ╚═╝╚═╝  ╚═╝╚═╝  ╚═╝
        "#,
        color::Fg(color::Green),
        r#"
                            ===================================================
                                     Bringing moon math to the masses
        "#,
        color::Fg(color::Reset)
    );
}