Print Typewriter
Simple learning project for a Rust Library that lets you print strings character by character in a configurable way.
Usage
Typing out "hello" with each character taking 10 milliseconds to be printed
use ;
let duration = char_duration!;
println_typed!;
Typing "hello world" with each word being typed instantly and each space taking 250 milliesconds
use ;
let duration = char_duration!;
println_typed!;
Typing a formatted string, "hello {} world" with spaces taking 250 milliseconds, periods taking 1 second, and everything else taking 90
use ;
let duration = char_duration!;
let beans = "beans";
println_typed!;