call_input

Crates.iocall_input
lib.rscall_input
version0.1.0
sourcesrc
created_at2023-06-01 01:04:59.134982
updated_at2023-06-01 01:04:59.134982
descriptionGet user input in rust like that of cs50 header file
homepage
repositoryhttps://github.com/Try3D/call_input
max_upload_size
id879362
size4,685
Try3D (Try3D)

documentation

README

call_input

Get user input in rust

Installation and usage

$ cargo add call_input

mod call_input;

fn main() {
    let n = call_input::get_i32("Enter your number:");
    let s = call_input::get_string("Enter your string:");
    let f = call_input::get_float("Enter your float:");
}

Commit count: 4

cargo fmt