This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Chapter 1: immediate evaluation with optional composition | |
@lambda f: not f() | |
def true() -> bool: | |
return False | |
assert true == True # ??? | |
# Chapter 2: single line composition |