Make sure the code in the end of chapter 9 works: ``` var a = 0; var temp; for (var b = 1; a < 10000; b = temp + b) { print a; temp = a; a = b; } ```
Make sure the code in the end of chapter 9 works: