rsrusl 0.1.2

A really simple useful library ported to Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Rusl Testing. - 0.1.0
// Use our rusl library functions

use rsrusl;

fn main() {
    rsrusl::testing::run_tests(|| {
        userinput();
        // You can add more tests here
    });
}

fn userinput() {
    // Use our rusl library functions
    let input = rsrusl::i::userinput("Enter your name:");
    rsrusl::g(&input);
}