← Back to All Languages
Memory Safe

RUST

Est. 2010
CreatorGraydon Hoare (Mozilla)
ParadigmSystems • Functional • Concurrent

A systems programming language focused on safety, speed, and concurrency. Rust achieves memory safety without garbage collection through its ownership system.

Hello World
1fn main() {
2 println!("Hello, World!");
3}