for.lox (99B) [raw]
1 var a = 0; 2 var temp; 3 4 for (var b = 1; a < 10000; b = temp + b) { 5 print a; 6 temp = a; 7 a = b; 8 }