mars_calc
The App runs on rust takes inpit weight in kg of earth and returns the weight on mars
My first rust App
Ownership Rules
First, let’s take a look at the ownership rules. Keep these rules in mind as we work through the examples that illustrate them:
Each value in Rust has a variable that’s called its owner. There can only be one owner at a time. When the owner goes out of scope, the value will be dropped.