#user-input #header-file #cs50

call_input

在 Rust 中获取用户输入,类似于 cs50 头文件中的方式

1 个不稳定版本

0.1.0 2023 年 6 月 1 日

#19 in #header-file

MIT 许可证

5KB
151

call_input

在 Rust 中获取用户输入

安装和使用

$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:");
}

无运行时依赖