Skip to content

Commit

Permalink
add func call in chapter 1.1
Browse files Browse the repository at this point in the history
Change-Id: I82ee8135f93d9b57ccb34f3f429f8fccbd5d4fcb
  • Loading branch information
air82 committed Jan 25, 2016
1 parent 652b31b commit 26c3ba0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,13 +122,15 @@
a = 1
def fun(a):
a = 2
fun(a)
print a # 1
```

```python
a = []
def fun(a):
a.append(1)
fun(a)
print a # [1]
```

Expand Down

0 comments on commit 26c3ba0

Please sign in to comment.