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

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