see also SuperCollider FAQ and How-to
- first step: how to get this piece of code running?
- Where can I download a SuperCollider manual?
- classes and class templates
- declaring variables
- yield vs. embedInStream
- boolean operations on signals or numbers
- at what time do I use switch instead of case?
- use switch when you are comparing a single value with a set of literals.
case {x.isPrime} {...}
{x.isPowerOfTwo} {...}
{x.even} {...}
{x > 100} {...}
{...};
writing plugins: