diff --git a/individual_introductions/Aman_Grandhi.py b/individual_introductions/Aman_Grandhi.py new file mode 100644 index 0000000..a13ae2e --- /dev/null +++ b/individual_introductions/Aman_Grandhi.py @@ -0,0 +1,3 @@ +def intro(): + print('Hey everyone. My name is Aman Grandhi and I am a freshman interested in Electrical Engineering and Computer Science.' + + '\nI\'m excited to learn more skills at RPL and work on some cool projects.\n') \ No newline at end of file diff --git a/main.py b/main.py index 5d18f77..8ea00c3 100644 --- a/main.py +++ b/main.py @@ -16,6 +16,8 @@ from individual_introductions import patrick_dunay from individual_introductions import maksim_popov from individual_introductions import mahir_shah +from individual_introductions import Aman_Grandhi + def main(): shivam_patel.intro() # call your intro function @@ -32,6 +34,7 @@ def main(): patrick_dunay.intro() maksim_popov.intro() mahir_shah.intro() + Aman_Grandhi.intro() if __name__ == '__main__': main()