File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -23,10 +23,15 @@ use std::sync::{Arc, Mutex};
2323
2424/// main() helps to generate the submission template .rs
2525fn main ( ) {
26- println ! ( "Welcome to leetcode-rust system." ) ;
26+ println ! ( "Welcome to leetcode-rust system.\n " ) ;
2727 let mut initialized_ids = get_initialized_ids ( ) ;
2828 loop {
29- println ! ( "Please enter a frontend problem id, or \" random\" to generate a random one, or \" solve $i\" to move problem to solution/" ) ;
29+ println ! (
30+ "Please enter a frontend problem id, \n \
31+ or \" random\" to generate a random one, \n \
32+ or \" solve $i\" to move problem to solution/, \n \
33+ or \" all\" to initialize all problems"
34+ ) ;
3035 let mut is_random = false ;
3136 let mut is_solving = false ;
3237 let mut id: u32 = 0 ;
You can’t perform that action at this time.
0 commit comments