fn main() {
// This is a sample Rust program
println!("Hello, world!");
let x = 42;
let y = x * 2;
// Calculate and print the result
println!("The answer is: {}", y);
// More code below
for i in 1..5 {
println!("Iteration: {}", i);
}
// End of program
println!("Goodbye!");
}