Wish Statement to tell the compiler the end of the code or exclude from compiling

DavideV

Active Member
Licensed User
Longtime User
Hello,
I think it would be useful to have a statement in the code to ignore what's written after it, something like and 'END' of the code.

In that way we can write normal, not commented text after it, so , instead of:

B4X:
'click on the splash panel
Sub pnlSplash_Click
    tmrsplash_Tick
End Sub

' End of the code for this module
'***** Changelog & ToDo list *****

'V1.00;
'- First release

it will be:
B4X:
'click on the splash panel
Sub pnlSplash_Click
    tmrsplash_Tick
End Sub

#ExcludeFromCompiler (or whatsoever you like)

End of the code for this module
***** Changelog & ToDo list *****

V1.00;
- First release
#ExcludeEnd

Thanks
Davide
 
Top