home *** CD-ROM | disk | FTP | other *** search
/ XML Bible (2nd Edition) / XML_Bible_Second_Edition_Hungry_Minds_2001.iso / mac / source / 11 / 11-4.xml < prev    next >
Extensible Markup Language  |  2001-01-10  |  385b  |  18 lines

  1. <?xml version="1.0" standalone="yes"?>
  2. <!DOCTYPE PROGRAM [
  3.   <!ELEMENT PROGRAM (#PCDATA)>
  4.   <!ATTLIST PROGRAM xml:space (default|preserve) 'preserve'>
  5. ]>
  6. <PROGRAM xml:space="preserve">public class AsciiTable {
  7.  
  8.   public static void main (String[] args) {
  9.  
  10.     for (int i = 0; i < 128; i++) {
  11.       System.out.println(i + "   " + (char) i);
  12.     }
  13.  
  14.   }
  15.  
  16. }
  17. </PROGRAM>
  18.