File tree 3 files changed +6
-0
lines changed
3 files changed +6
-0
lines changed Original file line number Diff line number Diff line change 1
1
// clippy3.rs
2
2
// Here's a couple more easy Clippy fixes, so you can see its utility.
3
3
4
+ // I AM NOT DONE
5
+
4
6
#[ allow( unused_variables, unused_assignments) ]
5
7
fn main ( ) {
6
8
let my_option: Option < ( ) > = None ;
Original file line number Diff line number Diff line change 18
18
// - The output element is going to be a Vector of strings.
19
19
// Execute `rustlings hint quiz2` or use the `hint` watch subcommand for a hint.
20
20
21
+ // I AM NOT DONE
22
+
21
23
pub enum Command {
22
24
Uppercase ,
23
25
Trim ,
Original file line number Diff line number Diff line change 1
1
// strings3.rs
2
2
// Execute `rustlings hint strings3` or use the `hint` watch subcommand for a hint.
3
3
4
+ // I AM NOT DONE
5
+
4
6
fn trim_me ( input : & str ) -> String {
5
7
// TODO: Remove whitespace from the end of a string!
6
8
???
You can’t perform that action at this time.
0 commit comments