Show
Ignore:
Timestamp:
03/01/08 19:32:14 (4 years ago)
Author:
h3r3tic
Message:

ported Enki to Tango; bootstraps, no other tests done yet

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/enki/CodeGenerator.d

    r231 r289  
    2727private import enki.types; 
    2828 
    29 private import std.string
     29private import tango.io.Stdout
    3030 
    3131interface IRenderable{ 
     
    6767    public this(String name){ 
    6868        counter++; 
    69         this.name = name ~ std.string.toString(counter);  
     69        this.name = name ~ .toString(counter);  
    7070    } 
    7171     
     
    170170    public String getUniqueLabel(String label){ 
    171171        counter++; 
    172         return label ~ std.string.toString(counter); 
     172        return label ~ .toString(counter); 
    173173    } 
    174174