diff --git a/introductions/sophiaabbassi.py b/introductions/sophiaabbassi.py new file mode 100644 index 0000000..e68c315 --- /dev/null +++ b/introductions/sophiaabbassi.py @@ -0,0 +1,4 @@ +def intro(): + print('Hi! My name is Sophie and I am a junior doing Computer Engineering with a Comp Sci minor.\n' + + 'I\'ve been apart of HKN as secretary, the marching band, EGC, and I\'m an SOE ambassador\n' + + 'I joined to help and get better at coding for when I get a big girl job.\n') \ No newline at end of file diff --git a/main.py b/main.py index 477a9b7..e32d532 100644 --- a/main.py +++ b/main.py @@ -9,6 +9,7 @@ from introductions import aaronordonez from introductions import mokshithanelluri from introductions import matthewschaming +from introductions import sophiaabbassi # Put all imports above this line def main(): @@ -20,6 +21,7 @@ def main(): aaronordonez.intro() mokshithanelluri.intro() matthewschaming.intro() + sophiaabbassi.intro() # Call you intro function above this line