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
/
exceptions
/
IndexTest.java
< prev
next >
Wrap
Text File
|
1996-09-28
|
276b
|
17 lines
class IndexTest {
public static void main (String args[]) {
try {
int array[] = new int[5];
for (int i = 0; i < 10; i++) {
System.out.println(i);
array[i] = 1;
}
}
catch (Exception c) {
System.out.println("Catch");
c.printStackTrace();
}
}
}