Changeset 349

Show
Ignore:
Timestamp:
08/23/08 19:17:47 (3 months ago)
Author:
JarrettBillingsley
Message:

...

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/v2new/samples/simple.md

    r347 r349  
    1 module simple 
     1module samples.simple 
    22 
    33/+ 
  • branches/v2new/test.d

    r344 r349  
    4141    Timer.init(t); 
    4242 
    43     word funcReg; 
    44  
    45     { 
    46         scope c = new Compiler(t); 
    47         funcReg = c.compileModule(`samples/simple.md`); 
    48     } 
    49  
    50         getFuncEnv(t, funcReg); 
    51         rawCall(t, funcReg, 0); 
     43        importModule(t, "samples.simple"); 
    5244 
    5345    Stdout.newline.format("MiniD using {} bytes before GC, ", bytesAllocated(vm)).flush;