Write a function that takes a list of integers, t, and returns a new list which contains only
even integers of t.
>>> a = [4, 3, 1, 2, 5, 2]
>>> d = get_evens(a)
>>> d
[4, 2, 2]