Changes between Version 1 and Version 2 of Using
- Timestamp:
- 11/22/10 20:30:39 (14 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Using
v1 v2 30 30 31 31 {{{ 32 #!cobra 32 33 using font1 = new Font("Arial", 10.0f) 33 34 charset = font1.GdiCharSet … … 38 39 39 40 {{{ 41 #!cobra 40 42 using f = File.createText(scriptName) 41 43 f.writeLine('#!/bin/sh') … … 44 46 45 47 {{{ 48 #!cobra 46 49 using resultsWriter = File.appendText(resultsFileName) 47 50 print to resultsWriter, 'Results of Run [date]' … … 54 57 block and then calling .dispose in a finally block 55 58 {{{ 59 #!cobra 56 60 font1 = new Font("Arial", 10.0f) 57 61 try