Hello everyone.
Here's something silly to stare at.
Happy coding. :pCode:public class StubbornCode{
public static void main(String[] arg[B][COLOR="RoyalBlue"])[/COLOR][/B]{
while (true) {
try{
double a = 1d, b = 0d;
System.out.println("1 dived by 0 is " + a / b);
} catch (Throwable e) {
System.out.println("Damn, an error: " + e.getMessage());
System.out.println("Wait, let me try again");
}
}
}
}
