Originally written by Quin Pendragon who generously made the source code available for other to use.
The source code for this version of Slime Volleyball
Java applets are slightly different from normal java applications. Java applets are designed to be run in a web browser.
Instead of a main() method, java applets have a run() method. For security reasons java applets are not allowed write/save information on your local machine.
Java applets are compiled the same way as java applications.
You need to have a java compiler installed on your computer.
Go to the command line and at the prompt type:
javac filename.java
(where filename.java is the name of the your java file).
<applet code="filename.class" height="100" width"400" > </applet>
appletviewer appletpage.html