Comparing Strings#
Your task for this code challenge is to write a function called compare_strings that takes in two strings as parameters first and second. The function should return True if the two strings are equal and False if they are different.
Sample Input 1:
red
blue
Sample Output 1:
False
Sample Input 2:
red
red
Sample Output 2:
True