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