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};
23
23
24
24
/// main() helps to generate the submission template .rs
25
25
fn main ( ) {
26
- println ! ( "Welcome to leetcode-rust system." ) ;
26
+ println ! ( "Welcome to leetcode-rust system.\n " ) ;
27
27
let mut initialized_ids = get_initialized_ids ( ) ;
28
28
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
+ ) ;
30
35
let mut is_random = false ;
31
36
let mut is_solving = false ;
32
37
let mut id: u32 = 0 ;
You can’t perform that action at this time.
0 commit comments