// Simple applet that displays a string	
import java.awt.*;	
import javax.swing.*;	
public class DisplayQuote extends JApplet {	
   public void paint(Graphics g) {	
      g.drawString("Anyone who spends their life on a computer " 	
             + "pretty unusual.", 20, 30);	
      g.drawString("Bill Gates, Chairman of Microsoft", 25, 45);	
   }	
}	
