1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
pub fn input() -> String {
	let mut val = String::new();
	std::io::stdin().read_line(&mut val).expect("Something went wrong with the input.");
	
	return val[0..val.len() - 1].to_string();
}

#[cfg(test)]
mod tests {
    use super::*;
    
    #[test]
    fn input_test() {
        let a = input();
        let b = input();
        
        assert_eq!(a, "hello");
        assert_eq!(b, "test");
    }
}