//! r_tools
//!
//! `r_tools` is a collection of utilities to make the syntax of rust more readable
use ;
/// Prints prompt and gets user input
///
/// # Example
/// ```
/// let prompt: String = "What is your name: ";
/// let name: String = r_input(prompt);
/// // User enters name "bob" here
/// assert_eq!(name, "bob".to_string());
/// ```