Part:0 - Few facts about Rust programming language
An enthusiastic individual dedicated to open-source development and contribution, boasting over 8 years of experience as a DevOps engineer. Proficient in designing resilient and secure infrastructures using technologies like Docker, Kubernetes, and Azure. Strongly advocate for the implementation of ServiceMesh and API management tools to ensure the secure deployment of microservices. Passionate about mentoring others, with a deep love for technology and active participation in the open-source community.
This is the very first write-up of our Rust journey. In this part, we will learn a few interesting facts about Rust programming language. This will give us an overview of how and what of Rust at a high level.
Every programming languages are special. Let's take an overview of very charming Rust .
Like most programming languages, the rust logic execution starts from
main()block.Rust is a statically typed language, Which means you have to specify the data type ( int/float/String) of each variable. More about data types can be found here
The variable/literals are immutable by default in rust. However, you can make the variable mutable by using
mutkeyword. Why the variable is immutable by default?- This is to provide the developer with an easy way to debug a program. When you know the value is not changed it is easy to debug.
- The second reason is let's say there are two expressions which are using the same value. if during execution the variable changes then, the expressions may not work as expected. So to make the program more robust the literals are mutable. You can get more info here.
Rustis a compiled language. This means each project/ code produces an executable file like.exe,.debetc. after compiling. The advantage is the code can run in any of the operating systems without a rust installation.There are two kinds of string data types namely
&str: string slice andString.This is to provide memory safety for the rust program. we will learn more about these in the coming parts.To prevent the memory leak in rust and make it more robust,
Rustuses the concept called ownership . this is a very useful and interesting feature inRust. This helps regulating variable scopes. When a variable goes out of scope rust deletes/ frees the value as well as the memory. More information hereRust Does not have the concept of a Garbage collector due to the above-said reason
Like other languages you can use external libraries/packages that are provided by rust itself (standard libraries) or 3rd parties. The packages/Libraries are called Crates.
Rust manages the Dependencies in a very well manner. The package manager is called Cargo. the interesting thing is that if you create a project with Cargo, it not only creates the boilerplate folder structure but it initialises the folder with Git automatically. So it natively supports Git.
These are few facts i found may be intersting to know before starting to learn Rust. Please let me if you have found some interssting fact about rust. Do correct if something is wrong here :-)
See you in the part 1 😀 .



