home *** CD-ROM | disk | FTP | other *** search
/ Java by Example / jbecd.bin / JBE-CD / JavaByExample / chap11 / LST11_2.txt < prev   
Encoding:
Text File  |  1996-02-08  |  89 b   |  6 lines

  1. int row = 0;
  2.  
  3. for (int x=0; x<10; ++x)
  4.     g.drawString("Al Thompson", 25, row++);
  5.  
  6.