File tree Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Expand file tree Collapse file tree 1 file changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -17,14 +17,14 @@ fn string(arg: String) {
17
17
}
18
18
19
19
fn main ( ) {
20
- ( "blue" ) ;
21
- ( "red" . to_string ( ) ) ;
22
- ( String :: from ( "hi" ) ) ;
23
- ( "rust is fun!" . to_owned ( ) ) ;
24
- ( "nice weather" . into ( ) ) ;
25
- ( format ! ( "Interpolation {}" , "Station" ) ) ;
26
- ( & String :: from ( "abc" ) [ 0 ..1 ] ) ;
27
- ( " hello there " . trim ( ) ) ;
28
- ( "Happy Monday!" . to_string ( ) . replace ( "Mon" , "Tues" ) ) ;
29
- ( "mY sHiFt KeY iS sTiCkY" . to_lowercase ( ) ) ;
20
+ ??? ( "blue" ) ;
21
+ ??? ( "red" . to_string ( ) ) ;
22
+ ??? ( String :: from ( "hi" ) ) ;
23
+ ??? ( "rust is fun!" . to_owned ( ) ) ;
24
+ ??? ( "nice weather" . into ( ) ) ;
25
+ ??? ( format ! ( "Interpolation {}" , "Station" ) ) ;
26
+ ??? ( & String :: from ( "abc" ) [ 0 ..1 ] ) ;
27
+ ??? ( " hello there " . trim ( ) ) ;
28
+ ??? ( "Happy Monday!" . to_string ( ) . replace ( "Mon" , "Tues" ) ) ;
29
+ ??? ( "mY sHiFt KeY iS sTiCkY" . to_lowercase ( ) ) ;
30
30
}
You can’t perform that action at this time.
0 commit comments