Changeset 255
- Timestamp:
- 12/15/07 12:32:08 (1 year ago)
- Files:
-
- trunk/mdcl.d (modified) (1 diff)
- trunk/samples/simple.md (modified) (3 diffs)
- trunk/test.brf (modified) (1 diff)
- trunk/test.d (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/mdcl.d
r201 r255 31 31 void main(char[][] args) 32 32 { 33 // This seemingly pointless code forces the GC to reserve some extra memory 34 // from the start in order to improve performance upon subsequent allocations. 35 // This is until the Tango GC gets a .reserve function or the like. 36 auto chunk = new ubyte[1024 * 1024 * 4]; 37 delete chunk; 38 33 39 (new CommandLine(Stdout, Cin.stream)).run(args); 34 40 } trunk/samples/simple.md
r248 r255 1 1 module simple; 2 2 3 if(false) 3 4 { 4 5 import arc.draw.color : Color; … … 161 162 } 162 163 164 /+ 163 165 /* 164 166 local co = coroutine Co; … … 1003 1005 } 1004 1006 } 1007 +/ trunk/test.brf
r235 r255 4 4 -g 5 5 -op 6 -profile trunk/test.d
r247 r255 6 6 import tango.io.Stdout; 7 7 8 version = Arc;8 //version = Arc; 9 9 10 10 void main() … … 20 20 21 21 ctx.addImportPath(`samples`); 22 ctx.importModule("s imple");22 ctx.importModule("speed"); 23 23 } 24 24 catch(MDException e)
