fix why-be-pure python code

master
Rachel Lambda Samuelsson 2023-08-12 20:17:32 +02:00
parent 08fd9d332a
commit a741d8d176
1 changed files with 1 additions and 0 deletions

View File

@ -17,6 +17,7 @@ Before we get into the why, we have to get into the what. Haskell is a purely fu
n = 0
def f(x):
global n
n = n + x
return n
```