grox icon indicating copy to clipboard operation
grox copied to clipboard

Integration tests for chapter 9

Open lenguyenthanh opened this issue 2 years ago • 0 comments

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;
}

lenguyenthanh avatar Jun 22 '22 08:06 lenguyenthanh