pub fn file(path: &str, delay_ms: u64)Expand description
Prints each line from a file with optional delay.
Behavior:
- On open/read failure, logs a themed error via
print::errorand returns (no panic). delay_mscontrols a fixed delay between lines.
Example (ignore in doctest):
ⓘ
use modcli::output::print;
print::file("./examples/banner.txt", 0);