In Perl, one can embed data in the actual program by including an __END__ directive. Anything else in the Perl source file, including binary data, is treated as file input that can be seen by using the DATA file handle.
I want to write a Java applet that plays a midi file on the web, but I...