Function read_char_no_msg

Source
pub fn read_char_no_msg() -> char
Expand description

§DESCRIPTION

Prompts the user to type a character (char) which will then be returned. Useful for prototyping or quick tests.

§RETURNS

A single character (char) provided by the user.

§EXAMPLES

use quick_input::read_char_no_msg;

let user_char: char = read_char_no_msg();