[Csnd-dev] should we have "break" inside a for-loop?

joachim heintz <[email protected]> Sat, 27 Sep 2025 09:01:26 +0900
Newsgroups gmane.comp.audio.csound.devel
Message-ID <[email protected]>
i think this is the classical case to leave a loop like
instr 1
   for i in [1 ... 10] do
     if i == 3 then
       break
     endif
   od
endin

currently we have igoto and label for this case --- possible but a bit 
awkward.

would it be good to implement "break"?