| Crates.io | boot_input |
| lib.rs | boot_input |
| version | 0.1.0 |
| created_at | 2025-06-24 11:31:19.422606+00 |
| updated_at | 2025-06-24 11:31:19.422606+00 |
| description | A simple Rust crate to read input from the user in common formats |
| homepage | |
| repository | https://github.com/yourusername/input_helper |
| max_upload_size | |
| id | 1724199 |
| size | 2,944 |
A lightweight Rust crate to simplify reading user input from the command line.
read_string()read_char()read_int()read_u64()read_float()read_double()use input_helper::*;
fn main() {
let name = read_string();
let age = read_int();
let grade = read_float();
println!(\"Name: {}, Age: {}, Grade: {}\", name, age, grade);
}