Hello
I'm getting an error in files that I've included into my main program. I know the cause of the errors, but they are not really errors.
For example my main program will look like this.
'**********
' Main Program
'**********
test.a = 5
Print test.a
, aPlus
(test
)
'$include :'TestModule.bas'
And my module will look like this.
'**********
' TestModule.bas
'**********
aPlus = t.a + 1
Don't get me wrong, the main program works and it compiles with no errors.
The problem arises when I want to edit my module. I get an 'Illegal SUB/FUNCTION parameter.' This makes sense since because it has no idea what a 'tTEST' in this context.
Have I missed something? Is there some clever workaround for this?