Recent Posts

Pymba - Python functional statements

1 minute read

Pymbda is a library that I wrote which turns a few Python statements into functions. It’s not quite Hylang, but it’s as functional as Python can be.

Python Yield From

9 minute read

yield from is a powerful feature of Python 3 that allows for recursion with generators. When a function has a yield statement, it ends up returning a genera...