blob: d88e97c77186c1c246ee25cb2e61c8a10c2a93f5 [file] [log] [blame]
#![feature(no_core)]
#![no_core]
fn main() {
let mut a = 1;
let mut b = 1;
loop {
let c = a + b;
a = b;
b = c;
}
}