LazyPython Library for Pure Functional Programming Usage from lazy.effect import lazy @lazy def sum(a, b): return a + b sum_effect = sum(2, 4) sum_effect.execute # 2 + 4 Test pytest --cov-report term-missing --cov=lazy Logo