Hello i found this today.
B4X:
'This code produces a very nasty error code.
Dim VariableA As Float
VariableA = (VariableA + 1) mod 5
'The solution is
Dim VariableA As Int
'Not really a bug just a very unfriendly error code.
[\CODE]