Write a function called print_every_other that takes a list of strings and prints every other entry, starting with the first, on its own line. For example, given ['A', 'B', 'C'], you would print "A" and "C".
print_every_other
['A', 'B', 'C']