3
0
Fork 0

Initial example

problem
Ambrose Chua 2021-06-24 15:48:09 +08:00
commit 8429190bf5
4 changed files with 17 additions and 0 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
__pycache__

6
entry.py Normal file
View File

@ -0,0 +1,6 @@
from submodule.thing import test
print("entry")
test()
# vim: set et ts=4 sw=4:

4
submodule/other.py Normal file
View File

@ -0,0 +1,4 @@
def printer(t):
print("yo", t)
# vim: set et ts=4 sw=4:

6
submodule/thing.py Normal file
View File

@ -0,0 +1,6 @@
from other import printer
def test():
printer("hello")
# vim: set et ts=4 sw=4: