home *** CD-ROM | disk | FTP | other *** search
- /* an example program using moxc */
-
- #include "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
-