Amr Tarek
Engineering Innovation
© 2025 All rights reserved.
Rust Programming Language
Rust is a modern systems programming language known for its focus on memory safety and performance.
19 Nov 2025
To make a variables in rust we need to use **let** keyword, by default the variable is immutable so you can't change its value.
19 Nov 2025
Any variable declared inside a function will be scoped only to its function, more generic rule.
19 Nov 2025
Rust supports multiple types of data types here you are going to cover struct, enums, Option, Arrays, and Vectors.
19 Nov 2025
Rust supports multiple types of data types here you are going to cover slice, strings, Tuples, pattern matching, and Generics.
19 Nov 2025
When you need several operations to execute one after another we put these operations into a functions.
19 Nov 2025