Skip to content

Commit 661c899

Browse files
committed
add source reader
1 parent b4b070e commit 661c899

File tree

1 file changed

+10
-0
lines changed

1 file changed

+10
-0
lines changed

read_source.py

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# read_source.py
2+
3+
def do_nothing():
4+
pass
5+
6+
def do_almost_nothing():
7+
print("5")
8+
9+
with open(__file__) as f:
10+
print(f.read())

0 commit comments

Comments
 (0)