Mini version of ls implemented in Rust
Finally, we have all the elements we need to implement a mini version of ls command in Rust.
Function main delegates to run. We do this in order to catch any errors and display a more user-friendly error message:
fn main() {
match run() {
...
ajanicij.hashnode.dev6 min read