release 0.1.0

This commit is contained in:
rus07tam 2026-05-06 12:21:06 +03:00
commit 30d94536a9
90 changed files with 7722 additions and 0 deletions

View file

@ -0,0 +1,8 @@
(builtins.seq
(builtins.def fib (builtins.lambda [n]
(builtins.cond.match n
(0 0)
(1 1)
(_ (builtins.math.add (this (builtins.math.sub n 1)) (this (builtins.math.sub n 2)))))))
(builtins.trace (fib 12))
)