Object variable initialization
It would be useful to be able to initialize object variables at declare time
ThinBASIC already allows to initialize variables during their declaration:
Dim d As Dword = 5
Dim s As String = "Hello"
It would be nice to be able to do the same for object variables:
Dim t As cTimer = new CTimer
Petr