JavaTXCompilerInJavaTX/examples/achim/TryCatch.jav
2013-10-18 13:33:46 +02:00

10 lines
91 B
Java
Executable File

class TryCatch{
test(){
try{
i;
i=0;
}catch(e){
e.printStackTrace();
}
}
}