crafting-interpreters/lox/fibonacci.lox

9 lines
103 B
Text
Raw Permalink Normal View History

2025-05-25 10:52:20 +02:00
var a = 0;
var temp;
for(var b = 1; a < 1000; b = temp + b) {
print a;
temp = a;
a = b;
}