<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">import jm.music.data.*;
import jm.util.Play;

public class BingLoop {
	public static void main(String[] args) {
		Phrase phr = new Phrase();
		for (int i=0; i&lt; 200; i++) {
			Note n = new Note(60 + (int)(Math.random() * 24), 0.125);
			phr.addNote(n);
		}
		Play.midi(phr);
	}
}</pre></body></html>