Skip to content
Permalink
master
Go to file
 
 
Cannot retrieve contributors at this time
9 lines (9 sloc) 210 Bytes
s = Server.default;
s.boot;
s.waitForBoot { Routine {
x = DX7Clone.new(s);
x.noteFreeTimeout(-1);
x.note(0, 42, 90, 10002); // channel 0, note 42, vel 90, preset 10002
12.wait;
x.note(0, 42, 0);
}.play; };