chuck icon indicating copy to clipboard operation
chuck copied to clipboard

ChucK Music Programming Language

Results 149 chuck issues
Sort by recently updated
recently updated
newest added

Here is a simple, syntactically incorrect chuck program: ``` 1 => int a;x int b; ``` The output from attempting to run this is `[syntax_error2.ck]:line(2).char(5): syntax error` This is on...

When doing automation setups with ChucK you may need to grep its output of `--probe` command, or parse that in some other way. Currently I don't see an easy way...

Hi, I found out that running() always return the value 0, doesn't matter if the shred is actually running or not. done() instead seems to work fine. I tried on...

Hello, I've been trying to use Chuck in UbuntuStudio 16.04 but it doesn't work. I installed it following all the steps from the book "programming for musicians and dgital artist"...

Review this patch, which enables string static member variables: https://lists.cs.princeton.edu/pipermail/chuck-dev/2012-September/000443.html Migrated from https://github.com/spencersalazar/chuck/issues/15

I believe this may already be a known issue; it appears static dur fields are not statically initialized ``` class Impatient { 1::ms => static dur moment; fun static void...

bug

A common use case in digital synthesis is to use an oscillator as an LFO for a parameter. The built in UGen oscillators provide some of such functionality via the...

Currently the ChucK language does not support namespaces or import statements. The current workaround used by LiCK and other libraries is to use `Machine.add(string)` calls to manually add all possible...

Often state within fields of a class must be initialized properly before an instance of a class can be used by callers. Typically this initialization is performed in a constructor....