diff --git a/introductions/josephchavarria.py b/introductions/josephchavarria.py new file mode 100644 index 0000000..af14de4 --- /dev/null +++ b/introductions/josephchavarria.py @@ -0,0 +1,8 @@ +def intro(): + print('Hi! My name is Joseph Chavarria' + + '\nI am a CS major, junior, and this is my first year being apart of RPL.' + + '\nI\'ll be apart of the software Avionics team!' + '\nI\'m apart of the Rutgers Marching Band playing Tenor Sax, and I do game dev\'ing too' + + '\nI plan to complete a masters degree specializing in ML/AI.\n' + ) + diff --git a/main.py b/main.py index e32d532..18fa58e 100644 --- a/main.py +++ b/main.py @@ -10,6 +10,7 @@ from introductions import mokshithanelluri from introductions import matthewschaming from introductions import sophiaabbassi +from introductions import josephchavarria # Put all imports above this line def main(): @@ -22,6 +23,7 @@ def main(): mokshithanelluri.intro() matthewschaming.intro() sophiaabbassi.intro() + josephchavarria.intro() # Call you intro function above this line