pub fn read_line() -> String
Reads a single line from the standard input.
This function panics if an error occurs whilst reading the standard input of the program.
let line = ftkit::read_line(); println!("You just wrote: {line}");