fixed typo

This commit is contained in:
Snorre 2025-03-20 12:51:51 +01:00
parent 54a3d6697e
commit e5e088c398

View file

@ -126,7 +126,7 @@ print(x) # prints 500
You can unpack a set by assigning it to another set, eg
```
[x,y] = [5,6]
[x,y] := [5,6]
print(x) # 5
print(y) # 6