Several functions from Elm 0.17 were moved to other modules in Elm 0.18, so here they are!
fst : ( a, b ) -> a
Given a 2-tuple, returns the first value.
snd : ( a, b ) -> b
Given a 2-tuple, returns the second value.