lazyfunctions 0.1.2

A collections of functions for lazy people, or highly efficient programmers.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# lazyfunctions
A collections of functions for lazy people, or highly efficient programmers.

## Examples
### input
```rust
extern crate lazyfunctions;

fn main() {
    let name = lazyfunctions::input("What's your name? : ").expect("Error at input");
    println!("Oh! So your name is {}!", name);
}
```

## Contributing 
To learn more about contributing to this project, read [CONTRIBUTING.md](https://github.com/dakokonutboi/lazyfunctions/blob/main/CONTRIBUTING.md)