File tree 5 files changed +9
-12
lines changed
compiled_starters/rust/src
starter_templates/rust/code/src
5 files changed +9
-12
lines changed Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ fn main() {
7
7
// io::stdout().flush().unwrap();
8
8
9
9
// Wait for user input
10
- let stdin = io:: stdin ( ) ;
11
10
let mut input = String :: new ( ) ;
12
- stdin. read_line ( & mut input) . unwrap ( ) ;
11
+ io :: stdin ( ) . read_line ( & mut input) . unwrap ( ) ;
13
12
}
Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ fn main() {
6
6
io:: stdout ( ) . flush ( ) . unwrap ( ) ;
7
7
8
8
// Wait for user input
9
- let stdin = io:: stdin ( ) ;
10
9
let mut input = String :: new ( ) ;
11
- stdin. read_line ( & mut input) . unwrap ( ) ;
10
+ io :: stdin ( ) . read_line ( & mut input) . unwrap ( ) ;
12
11
}
Original file line number Diff line number Diff line change 1
- @@ -1,13 +1,12 @@
1
+ @@ -1,12 +1,11 @@
2
2
#[allow(unused_imports)]
3
3
use std::io::{self, Write};
4
4
10
10
+ io::stdout().flush().unwrap();
11
11
12
12
// Wait for user input
13
- let stdin = io::stdin();
14
13
let mut input = String::new();
15
- stdin.read_line(&mut input).unwrap();
14
+ io:: stdin() .read_line(&mut input).unwrap();
16
15
}
Original file line number Diff line number Diff line change 1
- @@ -1,12 +1,13 @@
1
+ @@ -1,11 +1,13 @@
2
2
#[allow(unused_imports)]
3
3
use std::io::{self, Write};
4
4
7
7
io::stdout().flush().unwrap();
8
8
9
9
// Wait for user input
10
- let stdin = io::stdin();
10
+ + let stdin = io::stdin();
11
11
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();
13
14
+ println!("{}: command not found", input.trim());
14
15
}
Original file line number Diff line number Diff line change @@ -7,7 +7,6 @@ fn main() {
7
7
// io::stdout().flush().unwrap();
8
8
9
9
// Wait for user input
10
- let stdin = io:: stdin ( ) ;
11
10
let mut input = String :: new ( ) ;
12
- stdin. read_line ( & mut input) . unwrap ( ) ;
11
+ io :: stdin ( ) . read_line ( & mut input) . unwrap ( ) ;
13
12
}
You can’t perform that action at this time.
0 commit comments