Evaluate each action in the structure from left to right, and ignore
the results. For a version that doesn't ignore the results see
sequenceA.
sequenceA_ is just like
sequence_, but generalised to
Applicative actions.
Examples
Basic usage:
>>> sequenceA_ [print "Hello", print "world", print "!"]
"Hello"
"world"
"!"