rsrusl 0.1.0

A really simple useful library ported to Rust.
Documentation
1
2
3
4
5
6
7
fn main() {
    // Use our rusl library functions
    rsrusl::hw();
    rsrusl::g("Alice");
    let input = rsrusl::userinput("Enter your name: ");
    rsrusl::g(&input);
}