If I try to initialize global variables which are declared as public on the same line as the declaration I get very strange error message.
gives error
is fine
Greetings,
Markus
B4X:
Sub Globals
Public someVariable = 1
End Sub
B4X:
Sub Globals
Public someVariable
someVariable = 1
End Sub
Greetings,
Markus