Skip to content

Instantly share code, notes, and snippets.

@jweinst1
Created August 30, 2015 04:33
Show Gist options
  • Select an option

  • Save jweinst1/07fd488282c12cb93cef to your computer and use it in GitHub Desktop.

Select an option

Save jweinst1/07fd488282c12cb93cef to your computer and use it in GitHub Desktop.
basic applet template for Java
package tester;
import java.applet.*;
import java.awt.*;
public class list_applet extends Applet{
public void init(){
System.out.print ("Peace Out");
}
public void paint(Graphics g){
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment