I want to play without interruption sequences of numerous (say) sine waves. This works fine :
Sound[{Play[Sin[1000 t], {t, 0, 0.2}], Play[Sin[2000 t], {t, 0, 0.2}], Play[Sin[3000 t], {t, 0, 0.2}]}]
Why this doesn't ?
Sound[Table[Play[Sin[k 1000 t], {t, 0, 0.2}], {k, 1, 3}]]
Thanks in advance.