#user-input #input #user #string #opr

app input_opr

Provides a function for getting users input

1 unstable release

0.1.0 Aug 28, 2020

#95 in #user-input

MIT license

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);
}

No runtime deps