diff options
author | Cody Hiar <cody@hiar.ca> | 2019-10-16 10:36:14 -0600 |
---|---|---|
committer | Cody Hiar <cody@hiar.ca> | 2019-10-16 10:36:14 -0600 |
commit | 81f10379aa6de8da03ea9553d54252435a48dbea (patch) | |
tree | c023c7f11d846bd6ab87c5946764dcf13f135e6c /examples/example1 |
Initial commit
Diffstat (limited to 'examples/example1')
-rw-r--r-- | examples/example1/library1.py | 1 | ||||
-rw-r--r-- | examples/example1/library2.py | 2 | ||||
-rw-r--r-- | examples/example1/main.py | 4 |
3 files changed, 7 insertions, 0 deletions
diff --git a/examples/example1/library1.py b/examples/example1/library1.py new file mode 100644 index 0000000..dfcc0c1 --- /dev/null +++ b/examples/example1/library1.py @@ -0,0 +1 @@ +print('Libary 1 Loading') diff --git a/examples/example1/library2.py b/examples/example1/library2.py new file mode 100644 index 0000000..fb7cc63 --- /dev/null +++ b/examples/example1/library2.py @@ -0,0 +1,2 @@ +if __name__ == "__main__": + print("Library 2 loading") diff --git a/examples/example1/main.py b/examples/example1/main.py new file mode 100644 index 0000000..2ef6802 --- /dev/null +++ b/examples/example1/main.py @@ -0,0 +1,4 @@ +import library1 +import library2 + +print("main complete") |