Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions introductions/josephchavarria.py
Original file line number Diff line number Diff line change
@@ -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'
)

2 changes: 2 additions & 0 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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():
Expand All @@ -22,6 +23,7 @@ def main():
mokshithanelluri.intro()
matthewschaming.intro()
sophiaabbassi.intro()
josephchavarria.intro()
# Call you intro function above this line


Expand Down