rsteract 0.1.0

From stdin to String and back to stdout
Documentation
1
2
3
4
5
use rsteract::stdio::interact;

fn main() -> Result<(), std::io::Error> {
    interact(|x| x.chars().rev().collect())
}