mirror of https://github.com/buggins/dlangide.git
add readln() to helloworld project template
This commit is contained in:
parent
78a78ec070
commit
a99fd65aa1
|
@ -385,6 +385,8 @@ immutable string SOURCE_CODE_HELLOWORLD = q{
|
|||
import std.stdio;
|
||||
void main(string[] args) {
|
||||
writeln("Hello World!");
|
||||
writeln("Press enter...");
|
||||
readln();
|
||||
}
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue