#read #input #io-read #io

已删除 readln

终于!Rust 的正常输入

1 个不稳定发布

0.1.0 2022年10月7日

#99#io-read

MPL-2.0 许可证

4KB

crates.io License Documentation

readln

readln crate 提供了访问 read 宏的功能。

示例

#[macro_use]
extern crate readln;

fn main() {
    let _x: &str = read!().unwrap();
    let _y: u8 = read!(u8).unwrap();
}

lib.rs:

readln crate 提供了访问 read 宏的功能。

示例

#[macro_use]
extern crate readln;

fn main() {
    let _x: &str = read!().unwrap();
    let _y: u8 = read!(u8).unwrap();
}

无运行时依赖