irgendwie muma mol anfange ...

This commit is contained in:
Daniel Heule
2025-10-19 14:34:42 +02:00
commit f513d71acb
5 changed files with 28 additions and 0 deletions

11
src/main.rs Normal file
View File

@@ -0,0 +1,11 @@
use std::io;
fn main() {
println!("Hello, world!");
let mut guess = String::new();
io::stdin()
.read_line(&mut guess)
.expect("Failed to read line");
}