1
0
mirror of https://github.com/jht5945/finding.git synced 2025-12-27 21:20:05 +08:00
This commit is contained in:
2019-07-21 23:56:15 +08:00
parent 97897fd75b
commit 1ef7b8e408

View File

@@ -46,7 +46,7 @@ fn main() {
println!("{:?}", get_absolute_path("~/.jsspx"));
walk_dir(get_home_path().unwrap().as_path(), &|_, _| {}, &|p| {println!("{:?}",p)}, &|_| false).unwrap();
walk_dir(get_home_path().unwrap().as_path(), &|_, _| {}, &|p| println!("{:?}",p), &|_| false).unwrap();
println!("Hello, world!");
}