initial commit

This commit is contained in:
Zacharias-Brohn
2026-07-12 23:39:38 +02:00
commit c756b14e24
219 changed files with 5438 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
// TODO: Add the missing type of the argument `num` after the colon `:`.
fn call_me(num: u32) {
for i in 0..num {
println!("Ring! Call number {}", i + 1);
}
}
fn main() {
call_me(3);
}