1 Matching Annotations
- Oct 2023
-
ia600505.us.archive.org ia600505.us.archive.org
-
A possibility is that which may (but need not) be
```python def possibility(): # A possibility may or may not be may_be = True may_not_be = False return may_be, may_not_be
def meaning(): # A meaning is its possibility return possibility() ```
In this idea,
possibility()
returns two states:may_be
andmay_not_be
, representing the existence and non-existence of a possibility. Themeaning()
function returns the same states, indicating that a meaning is its possibility.
-