Data update

This commit is contained in:
Ingy döt Net 2025-02-27 18:35:13 -05:00
parent 8e4e15fa56
commit 72eb4943cb
1853 changed files with 35514 additions and 9441 deletions

View file

@ -0,0 +1,12 @@
##
function Leonardo(L0: integer; L1: integer; add: integer): sequence of integer;
begin
while (true) do
begin
yield L0;
(L0, L1) := (L1, L0 + L1 + add);
end;
end;
Leonardo(1, 1, 1).Take(25).println;
Leonardo(0, 1, 0).Take(25).println;