⚡
Code Typing Speed Test
How fast can you type real code? No backspace shortcuts.
RustPattern matching
Time:0s
WPM:0
Accuracy:100%
fn main() {
let x = Some(5);
match x {
Some(n) if n > 0 => println!("Positive: {}", n),
Some(0) => println!("Zero"),
_ => println!("Other"),
}
}
Click anywhere above or start typing to begin