quarkrs 0.1.1

A collection of small life improvements for rust.
Documentation
1
2
3
4
5
6
7
8
use std::io::stdin;

pub fn console_input() -> String {
    let mut inp = String::new();
    let stdin = stdin();
    stdin.read_line(&mut inp).unwrap();
    inp
}