forked from ant1441/TryALanguage-Rust
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathabstract.txt
More file actions
9 lines (6 loc) · 745 Bytes
/
abstract.txt
File metadata and controls
9 lines (6 loc) · 745 Bytes
1
2
3
4
5
6
7
8
9
Rust is a systems programming language developed by Mozilla.
It is designed to be a "safe, concurrent, programming language", and aims to support multiple platforms, including Linux, Windows, and embedded systems.
Rust's idea of safety is an extremely central aspect of the language, and influences all aspects of building systems with Rust.
This is accomplished via a very powerful type and memory management system, which guarantees at compile time that your code is memory safe, and has no data races, null pointers, or use-after-free errors.
We'll learn some of the basics of Rust, including data handling, concurrency, and data safety.
Attendees should install Rust before the session (via https://www.rustup.rs/ is the official method)