Skip ( ... ) is an alteranative way of excluding code from compilation.
/* .. */ commenting out is safer during debugging because Skip is sensitive to unbalanced brackets but is it has its uses:
'excluding blocks of code
def contract skip
'including blocks of code:
def contract
contract (
...
)
You also have preprocessor:
#define contract
#ifdef contract
...
#endif
Charles