diff --git a/introductions/shyamsrikant.py b/introductions/shyamsrikant.py new file mode 100644 index 0000000..46cadc9 --- /dev/null +++ b/introductions/shyamsrikant.py @@ -0,0 +1,3 @@ +def intro(): + print('Hi! My name is Shyam Srikant. I\'m a freshman Aerospace Major.' + + '\nI\'ve just joined AIAA and RPL. I hope to contribute alot\n') diff --git a/main.py b/main.py index e32d532..589ee2d 100644 --- a/main.py +++ b/main.py @@ -10,6 +10,7 @@ from introductions import mokshithanelluri from introductions import matthewschaming from introductions import sophiaabbassi +from introduction import shyamsrikant # Put all imports above this line def main(): @@ -22,6 +23,7 @@ def main(): mokshithanelluri.intro() matthewschaming.intro() sophiaabbassi.intro() + shyamsrikant.intro() # Call you intro function above this line