This code causes an error:
But if i write the code in this way errors don't happen::
I don't think is a normal behavior
B4X:
If Null = "aa" Then
Log("Ok")
Else
Log("No")
End If
B4X:
If "aa" = Null Then
Log("Ok")
Else
Log("No")
End If
I don't think is a normal behavior