Systems & hardware

Rust

A multi-paradigm system programming language focused on safety, especially safe concurrency, supporting functional and imperative-procedural paradigms.

Share this starting point code.study/rust
Created by
Graydon Hoare , Mozilla Research
First appeared
2010
Official resource
Visit the main website

Your first program

Hello, World!

Rust
fn main() {
    println!("Hello, World!");
}