1 2 3 4 5 6 7 8 9 10
fn main() { let mut a = 1; let mut b = 1; loop { let c = a + b; a = b; b = c; } }