control flow, primitive types and vectors

This commit is contained in:
2026-01-13 04:19:05 +00:00
parent 505ab3b606
commit 2cd1c84285
19 changed files with 50 additions and 28 deletions

View File

@@ -12,6 +12,10 @@
// the quantity bought.
// fn calculate_price_of_apples(???) -> ??? { ??? }
fn calculate_price_of_apples(qty: u32) -> u32 {
if qty < 41 { qty * 2 } else { qty }
}
fn main() {
// You can optionally experiment here.
}