On 3 February 2016 at 11:35, Olumide <50295@web.de> wrote:
Erm ... sequence (map print) [1,2,3] returns an error.

That's because it will be parsed as `(sequence (map print) [1,2,3]`.
If you use `sequence (map print [1,2,3])`, it should work.