Returns the tail of a list.
If list is a pair, tail returns the value of the tail slot. If list is the empty list, tail returns the empty list.
tail (#(4, 5, 6)) ⇒ #(5, 6)tail (#()) ⇒ #()
sealed