DrSchool Learn coding, fast.
EN AR BN CS DE EL Search

RUST Reference: Lifetimes

Quick reference for Lifetimes.

Read time: 1 min Words: 14
My Progress

RUST Reference — Lifetimes

Quick summary of Lifetimes with syntax and example.

Syntax

fn main(){}

Example

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