Tidal names a scale with a space-separated root — scale "c minor" — not Strudel's colon form
In Tidal the scale root is a separate space-separated argument: n “0 2 4” # scale “c minor”, whereas Strudel joins root and scale with a colon as “c:minor”. To change the root per cycle Tidal uses a pattern in the root slot: scale ”
Examples
— Tidal scale (space-separated root):
d1 $ n “0 2 4” # scale “c minor”
— Strudel equivalent (colon):
n(“0 2 4”).scale(“c:minor”)
— Root per cycle in Tidal: scale ”
Assessment
Rewrite n “0 2 4” # scale “c minor” in Strudel, and explain the note-vs-n distinction.