Files
TestRepo/src/main.rs
2025-08-04 19:26:51 +02:00

13 lines
217 B
Rust

//! A test
fn main() {
println!("Hello, world!");
println!("goo");
let x = None;
let z: i32 = x.unwrap();
let z: i32 = x.unwrap();
let z: i32 = x.unwrap();
let z: i32 = x.unwrap();
}