Skip to content

Commit 9e2c15a

Browse files
authored
Merge pull request #77 from codecrafters-io/simplify-rust-starter
Simplify Rust starter code
2 parents 6e77112 + 3b976c6 commit 9e2c15a

File tree

5 files changed

+9
-12
lines changed

5 files changed

+9
-12
lines changed

compiled_starters/rust/src/main.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ fn main() {
77
// io::stdout().flush().unwrap();
88

99
// Wait for user input
10-
let stdin = io::stdin();
1110
let mut input = String::new();
12-
stdin.read_line(&mut input).unwrap();
11+
io::stdin().read_line(&mut input).unwrap();
1312
}

solutions/rust/01-oo8/code/src/main.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ fn main() {
66
io::stdout().flush().unwrap();
77

88
// Wait for user input
9-
let stdin = io::stdin();
109
let mut input = String::new();
11-
stdin.read_line(&mut input).unwrap();
10+
io::stdin().read_line(&mut input).unwrap();
1211
}

solutions/rust/01-oo8/diff/src/main.rs.diff

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@@ -1,13 +1,12 @@
1+
@@ -1,12 +1,11 @@
22
#[allow(unused_imports)]
33
use std::io::{self, Write};
44

@@ -10,7 +10,6 @@
1010
+ io::stdout().flush().unwrap();
1111

1212
// Wait for user input
13-
let stdin = io::stdin();
1413
let mut input = String::new();
15-
stdin.read_line(&mut input).unwrap();
14+
io::stdin().read_line(&mut input).unwrap();
1615
}
+4-3
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
@@ -1,12 +1,13 @@
1+
@@ -1,11 +1,13 @@
22
#[allow(unused_imports)]
33
use std::io::{self, Write};
44

@@ -7,8 +7,9 @@
77
io::stdout().flush().unwrap();
88

99
// Wait for user input
10-
let stdin = io::stdin();
10+
+ let stdin = io::stdin();
1111
let mut input = String::new();
12-
stdin.read_line(&mut input).unwrap();
12+
- io::stdin().read_line(&mut input).unwrap();
13+
+ stdin.read_line(&mut input).unwrap();
1314
+ println!("{}: command not found", input.trim());
1415
}

starter_templates/rust/code/src/main.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,6 @@ fn main() {
77
// io::stdout().flush().unwrap();
88

99
// Wait for user input
10-
let stdin = io::stdin();
1110
let mut input = String::new();
12-
stdin.read_line(&mut input).unwrap();
11+
io::stdin().read_line(&mut input).unwrap();
1312
}

0 commit comments

Comments
 (0)