diff --git a/source/app.d b/source/app.d index b109b1d..8021dbf 100644 --- a/source/app.d +++ b/source/app.d @@ -332,11 +332,11 @@ } `; immutable appFile = -`import vibe.d; +`import std.stdio; -static this() +void main() { - logInfo("Edit source/app.d to start your project."); + writeln("Edit source/app.d to start your project."); } `; //Make sure we do not overwrite anything accidentally