I may be missing something, but it appears dividing by zero no longer generates an Exception.
It makes it virtually impossible to track down a bug where a value is not set and left at 0 and used in a divide.
B4X:
Dim a As Int = 99
Dim b As Int = 0
Dim c As Int = a/b
Log(c) '<== 2147483647 should raise Exception or at least warn of division by zero
It makes it virtually impossible to track down a bug where a value is not set and left at 0 and used in a divide.