Skip to content
This repository was archived by the owner on Jun 29, 2024. It is now read-only.
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
7 changes: 7 additions & 0 deletions individual_introductions/nile_kolenovic.py
Original file line number Diff line number Diff line change
@@ -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'



)
2 changes: 2 additions & 0 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -34,6 +35,7 @@ def main():
maksim_popov.intro()
mahir_shah.intro()
hannan_shah.intro()
nile_kolenovic.intro()

if __name__ == '__main__':
main()