Created
August 30, 2015 04:33
-
-
Save jweinst1/07fd488282c12cb93cef to your computer and use it in GitHub Desktop.
basic applet template for Java
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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