simplers 0.1.0

Simplification of to complex stuff in rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
# Simple.rs

Simple.rs is a crate i made to make things in rust that i found to complicated a little easier.

Still new to rust but this was fun to make.

## input function


Definition:
```rust
pub fn input<'a>(s: impl Into<Option<&'a str>>) -> String{

}
```

It lets you easily do input with 1 function instead of printing, flushing, reading the line, and then trimming the newline after the input