Skip to content

Instantly share code, notes, and snippets.

View bolu61's full-sized avatar
🎯
Focusing

jian bolu61

🎯
Focusing
View GitHub Profile
@bolu61
bolu61 / cursed.py
Last active February 28, 2025 17:54
Cursed decorators
# Chapter 1: immediate evaluation with optional composition
@lambda f: not f()
def true() -> bool:
return False
assert true == True # ???
# Chapter 2: single line composition