diff --git a/individual_introductions/nile_kolenovic.py b/individual_introductions/nile_kolenovic.py new file mode 100644 index 0000000..7e6d0fd --- /dev/null +++ b/individual_introductions/nile_kolenovic.py @@ -0,0 +1,7 @@ +def intro(): + print('Hi! My name is Nile Kolenovic. I am a 2nd year Computer Science and Philosophy major.\n' + + 'I am excited to learn more about telemetry and rocketry. I am always open to new ideas and suggestions!\n' + + + + ) \ No newline at end of file diff --git a/main.py b/main.py index 551043c..d55dd58 100644 --- a/main.py +++ b/main.py @@ -17,6 +17,7 @@ from individual_introductions import maksim_popov from individual_introductions import mahir_shah from individual_introductions import hannan_shah +from individual_introductions import nile_kolenovic def main(): shivam_patel.intro() # call your intro function @@ -34,6 +35,7 @@ def main(): maksim_popov.intro() mahir_shah.intro() hannan_shah.intro() + nile_kolenovic.intro() if __name__ == '__main__': main()