3 releases
new 0.1.3 | Feb 17, 2025 |
---|---|
0.1.2 | Feb 16, 2025 |
0.1.0 | Feb 16, 2025 |
#539 in Text processing
195 downloads per month
19KB
212 lines
This is the Rust/Cargo implementation of Rusl.
- 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
.
You can see the crates.io/cargo package here.
How to use:
- Make a Rust project with Cargo with:
cargo new projectName
andcd projectName
. - Add rusl to the project using:
cargo add rsrusl
- Use rusl in your project like:
use rsrusl;
fn main() {
// Use our rusl library functions
rsrusl::hw();
let input = rsrusl::i::userinput("Enter your name: ");
rsrusl::g(&input);
}
Dependencies
~2–11MB
~134K SLoC