use the stack function inside of every element in the array that goes in select ?
so maybe this works?
d1 $ select (2/2) [
stack[
s "bd", s "sd sd"
],
stack[
s "bev" # legato 1 # begin rand
]
]
oh and remember you can omit the 's' too, to me it looks cleaner:
d1 $ select (2/2) [
stack[
"bd",
"sd"
],
stack[
"bev" # legato 1 # begin rand
]
]