cr4t3_2 4.0.0

A package that uses a function called inpt to ask basic user input and prints the final information
Documentation
use std::io;

pub fn inpt() {
    let mut input = String::new();
    let mut input2 = String::new();
    let mut input3 = String::new();
    let mut input4 = String::new();
    let mut input5 = String::new();
    println!("What is your name? >");
    io::stdin().read_line(&mut input).expect("Failed to read line");
    println!("Your age? >");
    io::stdin().read_line(&mut input2).expect("Failed to read line");
    println!("Place of residency? >");
    io::stdin().read_line(&mut input3).expect("Failed to read line");
    println!("Continent? >");
    io::stdin().read_line(&mut input4).expect("Failed to read line");
    println!("Laptop name? >");
    io::stdin().read_line(&mut input5).expect("Failed to read line");
    print!("You typed: {input}, You typed: {input2}, You typed: {input3}, You typed: {input4}, You typed: {input5}");
}

pub fn done() {
    println!("Done!!");
    inpt();
}