rsrusl 0.1.4

A really simple useful library ported to Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
use rsrusl;

pub fn run() {
  rsrusl::tests! {
    rsrusl::log("tip", "This is a tip.");
    rsrusl::log("good", "This is good.");
    rsrusl::log("warning", "This is a warning.");
    rsrusl::log("error", "This is an error.");
    rsrusl::log("userhelp", "This is the userhelp color.");
    rsrusl::log("test", "This is the test color.");
    rsrusl::log("", "This is the default color.");
  }
}