Skip to content

Commit b6c8357

Browse files
authored
Update README.md
1 parent 926a6f0 commit b6c8357

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

README.md

+10-2
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ __Table of Contents__
1515
* [Purity](#purity)
1616
* [Idempotent](#idempotent)
1717
* [Arity](#arity)
18+
* [IO (TODO)](#io-todo)
1819
* [Higher-Order Functions (HOF)](#higher-order-functions-hof)
1920
* [Closure (TODO)](#closure-todo)
2021
* [Partial Application](#partial-application)
@@ -78,8 +79,9 @@ This is a side effect!
7879
Or:
7980

8081
```python
81-
numbers = []
82-
numbers.append(1) # mutates the `numbers` array
82+
>>> numbers = []
83+
>>> numbers.append(1) # mutates the `numbers` array
84+
>>>
8385
```
8486

8587

@@ -236,6 +238,12 @@ We can create our own __HOF__, see the example below:
236238
>>>
237239
```
238240

241+
242+
## IO (TODO)
243+
244+
TODO
245+
246+
239247
## Closure (TODO)
240248

241249
A closure is a way of accessing a variable outside its scope.

0 commit comments

Comments
 (0)