public class Finally2{
public static void main(String[] args){
try{
throw new RuntimeException("boom");
}
finally{
System.out.println("finally");
}
}
}
//
public class Finally2{
public static void main(String[] args){
try{
throw new RuntimeException("boom");
}
finally{
System.out.println("finally");
}
}
}
//