This repository has been archived on 2025-01-25. You can view files and clone it, but cannot push or open issues or pull requests.

18 lines
324 B
Rust

fn is_even(num: i64) -> bool {
num % 2 == 0
}
// The return type must always be annotated.
fn sale_price(price: i64) -> i64 {
if is_even(price) {
price - 10
} else {
price - 3
}
}
fn main() {
let original_price = 51;
println!("Your sale price is {}", sale_price(original_price));
}