Homework 0 is a test of systems that'll be used for the following homeworks.

HW0

Here is a simple ChucK program that plays a sine wave for a week at 220Hz. Click "Start" to run the ChucK code.

////////////////////////////////////////////////////
suggestions (copy and replace any of these items in live code)
// change timbre SawOsc osc => dac; // change frequency osc.freq(1000); // change duration 100::ms => now;
////////////////////////////////////////////////////
live code
// Sine oscillator at 220Hz SinOsc osc => dac; osc.freq(220); 1::week => now;