I’ve been experimenting with chucK, a programming language for musicians. The heart of chucK is time. This is helps me understand more about concurrency, or simultaneously running several processes at once. I know Java and C# have a shared-memory concurrency model. Some modern languages like Python (using Twisted as an event-driven networking engine) can support concurrency. However, I find it natural to understand why chucK might need it. I imagine it as an orchestra playing a symphony. The user can load a “thread” on the virtual machine and play the snippet. Similarly, the conductor can start signaling the flutist to start, and then the violins, then the bass, for example. In chuck, this “on-the-fly programming” is important, since the coder or “conductor” can inject live code without stopping other processes in program.
This is my first chucK program I wrote. I used the random generator to create a very ephemeral electronic feel.
My audio sample here:
To learn more about chucK, visit the ![official site] (http://chuck.cs.princeton.edu/)