home *** CD-ROM | disk | FTP | other *** search
/ Geek Gadgets 1 / ADE-1.bin / ade-dist / kaffe-0.5p4-src.tgz / tar.out / contrib / kaffe / test / floats / Flt.java next >
Text File  |  1996-09-28  |  128b  |  9 lines

  1. class Flt {
  2.     public static void main (String args[]) {
  3.         int i = 123456;
  4.         double d = (double)i;
  5.         System.out.println(d);
  6.     }
  7. }
  8.  
  9.