Results 1 comments of John71

Yes, code should be : ```rs let fixed_lib_path = Path::new(&libraries_path).join(lib_path.replace("\\", "/")); ``` or ```rs let fixed_lib_path = Path::new(&libraries_path).join(lib_path); ``` as `/` is a path separator that works for Linux, MacOS...