
3 Feb
2016
3 Feb
'16
5:35 a.m.
On 01/02/2016 17:39, David McBride wrote:
Note that it has not actually printed them out.
I hope you don't mind me asking but why then does sequence (map print [1,2,3] ) return the numbers 1, 2, 3 (albeit followed by [(),(),()]).
It merely has an array of as yet unexecuted actions. To print them you'd go like sequence (map print) [1,2,3] ...
Erm ... sequence (map print) [1,2,3] returns an error. - Olumide