| Crates.io | input_opr |
| lib.rs | input_opr |
| version | 0.1.0 |
| created_at | 2020-08-28 00:26:48.74478+00 |
| updated_at | 2020-08-28 00:26:48.74478+00 |
| description | Provides a function for getting users input. |
| homepage | |
| repository | https://github.com/Samayons/input-operations.git |
| max_upload_size | |
| id | 281655 |
| size | 2,123 |
This is a module for getting input from the user end-point.
use input_opr::get_string;
fn function_name() {
let name = get_string::get_input("What is your name? ");
println!("Hello {}", name);
}