ANSIC <<
Previous Next >> Carbon
Rust
Fornjot is an early-stage project to create a next-generation, code-first CAD application.
https://www.fornjot.app/
Based on Wikipedia: Rust is a multi-paradigm, general-purpose programming language. Rust emphasizes performance, type safety, and concurrency. Rust enforces memory safety—that is, that all references point to valid memory—without requiring the use of a garbage collector or reference counting present in other memory-safe languages. To simultaneously enforce memory safety and prevent concurrent data races, Rust's borrow checker tracks the object lifetime and variable scope of all references in a program during compilation. Rust is popular for systems programming but also offers high-level features including functional programming constructs.
Software developer Graydon Hoare (comment made on 2018.01.16) designed Rust while working at Mozilla Research in 2006. Mozilla officially sponsored the project in 2009, and the designers refined the language while writing the Servo experimental browser engine and the Rust compiler. Rust's major influences include SML, OCaml, C++, Cyclone, Haskell, and Erlang. Since the first stable release in January 2014, Rust has been adopted by companies including Amazon, Discord, Dropbox, Facebook (Meta), Google (Alphabet), and Microsoft.
Rust has been noted for its growth as a newer language and has been the subject of academic programming languages research.
Beginning Rust (2022)
https://course.rs/about-book.html (Rust 語言聖經) - https://github.com/sunface/rust-course
Rust: The Programming Language for Safety and Performance (local)
Even though this study was not comprehensive (and more work must be done in this area), it informs the programming and research communities on the promising features of Rust as the language of choice for the future.
Rust is a systems programming language meant to supersede languages like C++. The main
focus of Rust is (memory) safety, but it later began to target performance as well, adopting the
C++ approach of zero cost abstraction.
https://doc.rust-lang.org/book/
https://github.com/rust-lang/book
https://github.com/cmsc388z/lectures
https://www.ralfj.de/projects/rust-101/
https://github.com/rust-lang/mdBook
https://github.com/rust-lang/miri
https://github.com/lowenware/dotrix (3D engine)
ANSIC <<
Previous Next >> Carbon