Skip to content

Commit 29e4dd6

Browse files
committed
fix
1 parent 88741be commit 29e4dd6

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/main.rs

+7-2
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,15 @@ use std::sync::{Arc, Mutex};
2323

2424
/// main() helps to generate the submission template .rs
2525
fn 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;

0 commit comments

Comments
 (0)