Skip to main content
⚙️Rustintermediate

Question 1 of 10

fn main() {
    let s = String::from("hello");
    let r1 = &s;
    let r2 = &s;
    println!("{} {}", r1, r2);
}

What's the output?

Tech School/Quiz/Rust (Intermediate)