wena 0.2.0

Wena is a micro-framework that provides an elegant starting point for your console application.
Documentation
mod buffer;
mod console;

pub use buffer::BufferOutput;
pub use console::ConsoleOutput;

pub trait Output {
    fn write(&mut self, string: impl Into<String>);

    fn writeln(&mut self, string: impl Into<String>) {
        self.write(string);

        self.new_line();
    }

    fn new_line(&mut self) {
        self.write("\n");
    }
}