rsrusl 0.1.0

A really simple useful library ported to Rust.
Documentation

This is the Rust/Cargo implementation of Rusl.

[!IMPORTANT] I am aware that there is an existing rusl package on cargo. This is not the rusl package from here. Because of this I have renamed the rust version to rsrusl.

How to use:

  1. Make a Rust project with Cargo with: cargo new projectName and cd projectName.
  2. Add rusl to the project using: cargo add rsrusl
  3. Use rusl in your project like:
fn main() {
    // Use our rusl library functions
    rsrusl::hw();
    rsrusl::g("Alice");
    let input = rsrusl::userinput("Enter your name: ");
    rsrusl::g(&input);
}