23 releases
0.5.0 | Jun 30, 2024 |
---|---|
0.4.5 | Jun 22, 2023 |
0.4.3 | Apr 21, 2021 |
0.4.2 | Mar 21, 2021 |
0.3.0 | Jul 6, 2019 |
#264 in Command-line interface
7,243 downloads per month
Used in 8 crates
61KB
854 lines
proconio
Easy IO library for competitive programming.
proconio
provides an easy way to read values from stdin (or other source). The main is input!
macro.
The macro's user interface is basically the same with tanakh's input macro.
use proconio::input;
input! {
n: u8,
m: u32,
l: i32,
}
// now you can use n, m and l as variable.
println!("{} {} {}", n, m, l);
For more details, see documentation.
Dependencies
~230KB