1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-04-13 20:02:23 +02:00

add rust video to rust intro section (#5634)

This commit is contained in:
dsh 2024-05-10 09:27:23 +01:00 committed by GitHub
parent bb9a911e59
commit 476400a02e
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,3 +1,7 @@
# What is Rust?
Rust is a modern system programming language focused on performance, safety, and concurrency. It accomplishes these goals without having a garbage collector, making it a useful language for a number of use cases other languages arent good at. Its syntax is similar to C++, but Rust offers better memory safety while maintaining high performance.
Rust is a modern system programming language focused on performance, safety, and concurrency. It accomplishes these goals without having a garbage collector, making it a useful language for a number of use cases other languages arent good at. Its syntax is similar to C++, but Rust offers better memory safety while maintaining high performance.
Visit the following resources to learn more:
- [What is Rust?](https://www.youtube.com/watch?v=R33h77nrMqc)