Skip to main content
JourneyUncommon
Toggle theme
Sign In
Sign Up
Toggle theme
Home
/
Practice
/
Rust
easy
Rust
ownership and move
Single-choice MCQ
What does this code print?
fn main() { let x = 5; let y = x; println!("{} {}", x, y); }