diff --git a/Ch2 - Basics/check_modules.py b/Ch2 - Basics/check_modules.py new file mode 100644 index 0000000..2c257ad --- /dev/null +++ b/Ch2 - Basics/check_modules.py @@ -0,0 +1,3 @@ +import helloworld_finished + +print(x) \ No newline at end of file diff --git a/Ch2 - Basics/helloworld_finished.py b/Ch2 - Basics/helloworld_finished.py index 8ff61a8..840109e 100644 --- a/Ch2 - Basics/helloworld_finished.py +++ b/Ch2 - Basics/helloworld_finished.py @@ -2,7 +2,8 @@ # Example file for HelloWorld # LinkedIn Learning Python course by Joe Marini # - +x = 'check if I exist' +print('Did you chceck if I exist?') def main(): print("hello world!")