import examples

This commit is contained in:
Mert Gör 🇹🇷 2023-05-27 12:41:48 +03:00
parent c5b0de1f2b
commit 336024b552
No known key found for this signature in database
GPG Key ID: 2100A876D55B39B9
3 changed files with 23 additions and 0 deletions

View File

@ -0,0 +1,9 @@
#sample.py
import test
def main():
print(test.x)
test.foo()
main()

View File

@ -0,0 +1,8 @@
# test.py
print('I am test module')
def foo():
print('I am foo')
x = 10

View File

@ -0,0 +1,6 @@
# test.py
def foo():
print('I am foo')
x = 10