We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent be175b3 commit 6a8b2a9Copy full SHA for 6a8b2a9
Cargo.toml
@@ -1,6 +1,6 @@
1
[package]
2
name = "std-macro-extensions"
3
-version = "0.26.12"
+version = "0.26.13"
4
readme = "README.md"
5
edition = "2024"
6
authors = ["root@ltpp.vip"]
src/cin/macro.rs
@@ -5,9 +5,8 @@
#[macro_export]
macro_rules! cin {
7
() => {{
8
- use std::io::{self};
9
let mut input: String = String::new();
10
- let _ = io::stdin().read_line(&mut input);
+ let _ = std::io::stdin().read_line(&mut input);
11
input
12
}};
13
}
0 commit comments