Wiki

Changes between Version 3 and Version 4 of CodeDoc

Show
Ignore:
Timestamp:
03/11/14 12:15:16 (11 years ago)
Author:
hopscc
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • CodeDoc

    v3 v4  
    101101    return this 
    102102}}} 
     103 
     104Note that if code is commented out as above ( delimiting '''/#''' and  '''#/''' on separate lines around the disabled code) the 
     105commented code can be easily re-enabled by changing the leading '''/#''' to '''#/#''', turning the comment block into two single line comments 
     106{{{ 
     107#!cobra 
     108def startSource(fileName as String, source as String) as Tokenizer 
     109    #/# 
     110    print '**********************************************' 
     111    print source 
     112    print '**********************************************' 
     113    #/ 
     114    ... 
     115}}} 
     116 
    103117 
    104118You can also comment (out) code within a line with inline '''/#... #/'''