D语言程序库 Tango -


未知
未知
D语言

软件简介

Tango 是一种跨平台的开放源码D语言软件库。这是一个全面的常用工具库,并得到越来越多的D语言爱好者的喜爱。

下面是一个用来将文件内容一行行输出的代码示例:

private import  tango.io.Console,  
                tango.io.device.File;

private import  tango.io.stream.Lines;

void main (char[][] args)  
{  
          if (args.length is 2)  
           {  
           // open a file for reading  
           auto file = new File (args[1]);

           // create a line oriented iterator, and use it to sweep the file  
           foreach (line; new Lines!(char) (file))  
                    Cout (line).newline;  
           }  
        else  
           Cout ("usage: ")(args[0])(" <filename>").newline;  
}