Rust
From Just Solve the File Format Problem
(Difference between revisions)
Dan Tobias (Talk | contribs) (Created page with "{{FormatInfo |formattype=Languages |subcat=Programming Languages |extensions={{ext|rs}} |released=2012 }} '''Rust''' is a programming language developed by the Mozilla Researc...") |
Dan Tobias (Talk | contribs) (→Links) |
||
(One intermediate revision by one user not shown) | |||
Line 13: | Line 13: | ||
* [http://static.rust-lang.org/doc/master/tutorial.html Rust language tutorial] | * [http://static.rust-lang.org/doc/master/tutorial.html Rust language tutorial] | ||
* [https://github.com/mozilla/rust/wiki Rust wiki] | * [https://github.com/mozilla/rust/wiki Rust wiki] | ||
+ | * [https://sdleffler.github.io/RustTypeSystemTuringComplete/ Rust's Type System is Turing-Complete] | ||
+ | * [https://thenewstack.io/rust-creator-graydon-hoare-talks-about-security-history-and-rust/ Rust Creator Graydon Hoare Talks About Security, History, and Rust] | ||
[[Category:Mozilla]] | [[Category:Mozilla]] |
Latest revision as of 01:37, 20 June 2019
Rust is a programming language developed by the Mozilla Research team, to be used in the development of their Servo rendering engine, which may be used in a future web browser. Like many current-day programming languages, it has a syntax which is a variant of C. It features built-in pattern-matching capabilities, as well as features designed for concurrency (spawning multiple processes with access to the same data structures). Data can be designated as mutable or immutable, affecting what sorts of actions may be done to it.