A very nice and simple way to think about [[State Diagrams|state]] and coding paradigms:
- **Imperative** - state is external to code
- **Object Oriented** - state is part of your code
- **Functional** - there is no state
****
# More
## Source
- https://youtu.be/nuML9SmdbJ4?si=-zxr-r6rft5ZERiP
## Related
- [[Functions]]
- [[Pure Function]]