D (プログラミング言語)/d2/Hello, World!から hello, world プログラムを取得しようとしています。codepad.org で作業します。これが私のコードです:
/* This program prints a
hello world message
to the console. */
import std.stdio;
void main()
{
writeln("Hello, World!");
}
http://codepad.org/MdLVQEMmで実行したときに得られる出力は次のとおりです。
Line 9: Error: undefined identifier writeln
Line 9: Error: function expected before (), not writeln of type int
私が間違っていることについてのアイデアはありますか?私はほとんどコードをコピー/貼り付けただけです..