use io;
use Write;
/// Prompts the user (without a newline) to input a value.
///
/// # Examples
///
/// ```
/// let input = akshually::io::prompt_line::<u8>("Your age: ");
/// match input {
/// Some(age) => {
/// println!("You are {age} years old.");
/// },
/// None => {
/// println!("You didn't enter an age.");
/// },
/// };
/// ```