finished ch3

This commit is contained in:
Jasper Ras 2025-08-04 08:46:58 +02:00
parent 5c3e251568
commit 6d09a2a420
9 changed files with 70 additions and 0 deletions

5
ch3/loops/src/main.rs Normal file
View file

@ -0,0 +1,5 @@
fn main() {
loop {
println!("Hello, world!");
}
}