add readln() to helloworld project template

This commit is contained in:
Vadim Lopatin 2015-12-09 14:57:53 +03:00
parent 78a78ec070
commit a99fd65aa1
1 changed files with 2 additions and 0 deletions

View File

@ -385,6 +385,8 @@ immutable string SOURCE_CODE_HELLOWORLD = q{
import std.stdio;
void main(string[] args) {
writeln("Hello World!");
writeln("Press enter...");
readln();
}
};