Yeah, I would rather punt on this bastard.
Does nothing, other than act as a block remark statement, but...
Add in the $LET and now you have to rem out the "add" statements, because now the compiler will process it. So what a PITA to track down all $LET statements and marry them $IF/THENs.
Pete
Code: (Select All)
APPLE = 1
$IF APPLE = 1 THEN
PRINT "Pete"
add
add
$END IF
Does nothing, other than act as a block remark statement, but...
Code: (Select All)
$LET APPLE = 1
$IF APPLE = 1 THEN
PRINT "Pete"
' add
' add
$END IF
Add in the $LET and now you have to rem out the "add" statements, because now the compiler will process it. So what a PITA to track down all $LET statements and marry them $IF/THENs.
Pete