#beginners-learningtocode-100daysofcode
Read more stories on Hashnode
Articles with this tag
In rust every value has an owner, at a given point in time there can be only one owner to the value. The value will be dropped once the owner goes out...
Decrypt Command · Previously in this series, we covered the encryption command and configured the main function to handle the parsed arguments for the...
Rust guarantees memory safety with a feature called Ownership. Memory Safety This is a property of a program where memory pointers used always point...
Reusable Code Blocks · Functions Functions are the block of code that performs the task. These code blocks can be called and can be reused. Functions can...