diff --git a/hacktoberfest.rb b/hacktoberfest.rb index 3a0ef92..90067e7 100644 --- a/hacktoberfest.rb +++ b/hacktoberfest.rb @@ -1,7 +1,8 @@ class Hacktoberfest @@participants_list = [ - "RyanJamesCaldwell" + "RyanJamesCaldwell", + "VesnaTrifunoska" ] def initialize diff --git a/main.py b/main.py index efbfb1d..d95d9d1 100644 --- a/main.py +++ b/main.py @@ -17,7 +17,7 @@ def main(): print('\n'.join(' ' * (10-x) + '*' * (x * 2 + 1) for x in range(10)) + '\n' + '\n'.join(' ' * 8 + '|' * 5 for x in range(4))) print("Let's get started!") - choice = int(input("Please choose from the following\n1. GitHub\n2. Facebook\n3. Twitter\n")) # Add more choices here + choice = int(input("Please choose from the following\n1. GitHub\n2. Facebook\n3. Twitter\n5. Instagram\n")) # Add more choices here if choice == 1: print("https://github.com") @@ -25,6 +25,8 @@ def main(): print("https://facebook.com") elif choice == 3: print("https://twitter.com/") + elif choice == 5: + print("https://instagram.com/")