PyoungRyang Ko

Results 366 comments of PyoungRyang Ko

I have just realised that the official release of SC 3.14.0 already has this problem. I do not have an older build based on 3.13.0 with math:: support, so 3.14.0...

I tested the DynGen documentation after removing the math tag, but the error still occurs. Hm.... strange...

My guess is that the code editor in the HelpBrowser does not correctly parse quotation marks spanning multiple lines, since removing the multiple lines inside "" results in no error....

@JordanHendersonMusic's opinion seems to be very correct! The following code snippet does not return the error and works as expected: ``` ( DynGenDef(\fbSin, "freq = in0;" "feedback = in1;" "//...

Will this affect the following implementation in https://github.com/supercollider/supercollider/issues/7192#issuecomment-3431066871? ``` String { ... interpret { |... args| ^thisProcess.interpreter.interpret(this, *args); } interpretPrint { |args| ^thisProcess.interpreter.interpretPrint(this, *args); } ... } ```

From my viewpoint, ``` ( arg a = 1, b = 2, c = a + b, d = x; var x = a + b; d; ) ``` It...