RUST PROGRAMMING TUTORIAL
(INTRODUCTION)
Rust is a statically typed, general-purpose programming langauage, which is not written in C/C++ (a common misconception by beginners) but has syntax similar to C++.
Rust is a programming langauage that focuses on speed, memory safety and parallelism.
The core features that allows Rust to stand out from the other programming languages are:
- Performance: Rust provides one of best performance in regards to speed and memory usage.
- Security: Unlike C and C++, Rust provides better memory management, thus reduing security vulnerabilities.
- Concurreny: The ability to start and end multiple tasks parallelly is important aspect for any programming language. They are build into Rust.
Inspite of its vast benefits, it comes with a steep learning curve. But after overcoming the intial learning curve, you will learn to appreciate it (or maybe not).
Comments
Post a Comment