This commit is contained in:
itamar 2026-04-10 00:21:44 +02:00
commit 8eb63a0625
Signed by: itamar
SSH key fingerprint: SHA256:Dv6UzB9hN8q8FUgMR/7X3DTFpE/vSB2m05+KNnxM4B0
6 changed files with 1020 additions and 0 deletions

4
test.py Normal file
View file

@ -0,0 +1,4 @@
from lib import List
lst = List.pure(2) >> (lambda n: List([n, n+1]))
print(lst)