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