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 >
Wrap
Text File
|
1996-09-28
|
162b
|
9 lines
public class dup2 {
public static void main(String[] args) {
long a, b, c;
a = b = c = 3;
System.out.println(a+" "+b+" "+c);
}
}