Macro skittles::underline [] [src]

macro_rules! underline {
    ( $($input:tt)* ) => { ... };
}

Inserts a line underneath each character.

let name = "Skittles";

underline!("Taste the rainbow...");
underline!("{} - Taste the rainbow...", name);