//Music 220B: ChuckU #2 //by Cat Davis (catdavis) //Since haiku's are commonly peaceful, I chose to use a peaceful instrument //for this ChuckU, the mandolin. First, one mandolin plays at a given frequency. //Then another mandolin joins with a relative frequency for the final pluck. Mandolin mandy => dac; Mandolin mandy2 => dac; 200 => mandy.freq; 0.9 => mandy.pluck; 500::ms => now; 600 => mandy2.freq; 0.9 => mandy.pluck; 0.9 => mandy2.pluck; 2000::ms => now;