1 unstable release
0.1.0 | Aug 28, 2020 |
---|
#95 in #user-input
2KB
Get Input
This is a module for getting input from the user end-point.
Usage
use input_opr::get_string;
fn function_name() {
let name = get_string::get_input("What is your name? ");
println!("Hello {}", name);
}