Hello everyone.
Here's something silly to stare at.
public class StubbornCode{
public static void main(String[] arg){
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");
}
}
}
}
Happy coding.
