Writing Rust CLIs - Hello World !
organizing Rust Project Directory
create a directory structure with the following commands
$ mkdir -p hello/src
mkdir the command will make a directory the -p options create a parent directory before creating a child directory
create hello.rs with t...
blog.cloudnativefolks.org12 min read