我使用 windows 安装程序安装了 dmd (2.0 ?) 并尝试编译以下程序:
module tcpechoserver;
import std.stdio;
const int MAXPENDING = 5;
int main(char[][] argv)
{
if(argv.length != 2){
writef("Usage: %s <port>", argv[0]);
}
return 0;
}
但我收到以下编译器错误:
Error: module stdio cannot read file 'std\stdio.d'
为了让标准库工作,我必须指定一些路径吗?