Playing multiple blocks of code at once?

Hello! I was wondering if there was a way of playing the whole document without having to press ctrl enter on each block of code. And also if there was the possibility of choosing for example to play "d1 and d2" or "d1 and d3". Thanks in advance!

Might be other ways, but you can put your outputs into do notation and evaluate it all at once:

    do
      d1 $ n "0(3,8)" # s "supervibe"
      d2 $ s "lighter(7,16)" # n (run 16)
      d3 $ s "future(3,8)"
3 Likes

That's nice, thank you!