crafting-interpreters-hs/examples/fibonacci.lox

10 lines
100 B
Text
Raw Permalink Normal View History

2025-12-30 06:53:05 +03:00
var a = 0;
var temp;
for (var b = 1; a < 10000; b = temp + b) {
print a;
temp = a;
a = b;
}