/* an example program using moxc */

#include <\cmt\musiprog.h>

keydown(c, k, v)
    begin
	pnote(k+12, 100);
    end

asciievent(c)
    begin
	when c == 'q' then quit()
	endwhen
    end

hello()
    begin
	printf("hello\n");
	cause(300, hello);
    end

mainscore()
    begin
	hello();
    end
