We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 926a6f0 commit b6c8357Copy full SHA for b6c8357
README.md
@@ -15,6 +15,7 @@ __Table of Contents__
15
* [Purity](#purity)
16
* [Idempotent](#idempotent)
17
* [Arity](#arity)
18
+* [IO (TODO)](#io-todo)
19
* [Higher-Order Functions (HOF)](#higher-order-functions-hof)
20
* [Closure (TODO)](#closure-todo)
21
* [Partial Application](#partial-application)
@@ -78,8 +79,9 @@ This is a side effect!
78
79
Or:
80
81
```python
-numbers = []
82
-numbers.append(1) # mutates the `numbers` array
+>>> numbers = []
83
+>>> numbers.append(1) # mutates the `numbers` array
84
+>>>
85
```
86
87
@@ -236,6 +238,12 @@ We can create our own __HOF__, see the example below:
236
238
>>>
237
239
240
241
+
242
+## IO (TODO)
243
244
+TODO
245
246
247
## Closure (TODO)
248
249
A closure is a way of accessing a variable outside its scope.
0 commit comments