Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.applet.Applet; // Includes standard Applet classes
- import java.awt.*; // Standard Graphics Routines
- public class Wow extends Applet {
- // Applets use paint instead of main
- public void paint (Graphics page) {
- page.drawString("looks to work to me!", 5, 10);
- } // method paint
- } // class Wow
Advertisement
Add Comment
Please, Sign In to add comment