py-fp/test.py
2026-04-10 00:21:44 +02:00

4 lines
83 B
Python

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