Skip to content

Commit 85bc075

Browse files
author
Philip Guo
committed
augmented the example
1 parent 2e28be6 commit 85bc075

1 file changed

Lines changed: 4 additions & 1 deletion

File tree

example-code/aliasing.txt

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,10 @@ y = "hello"
1010

1111
def foo(lst):
1212
lst.append("hello")
13-
print lst
13+
bar(lst)
14+
15+
def bar(myLst):
16+
print myLst
1417

1518
foo(x)
1619
foo(z)

0 commit comments

Comments
 (0)