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'
標準ライブラリを機能させるために指定しなければならないパスはありますか?