alternative version of fibonacii numbers

This commit is contained in:
IgorCielniak
2025-12-31 15:01:33 +00:00
parent b186ae2826
commit c696898436

8
fib.sl
View File

@@ -14,3 +14,11 @@ import stdlib/io.sl
r> 3 + puti
" numbers printed from the fibonaci sequence" puts
;
: main2
1 2 while over 100 < do
over puti cr
swap over +
repeat
;