func main[] : i64 let a: i64 = 0 let b: i64 = 1 while a < 100000 io.println_i64(a) let temp: i64 = b b = a + b a = temp