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 / longs / dup2.java next >
Text File  |  1996-09-28  |  162b  |  9 lines

  1. public class dup2 {
  2.     public static void main(String[] args) {
  3.         long a, b, c;
  4.  
  5.         a = b = c = 3;
  6.         System.out.println(a+" "+b+" "+c);
  7.     }
  8. }
  9.