Visual D code template looks like this:
module main;
import std.stdio;
int main(string[] argv)
{
writeln("Hello D-World!");
return 0;
}
Is it possible to change the template into:
module main;
import std.stdio;
void main() {
}
Visual D code template looks like this:
module main;
import std.stdio;
int main(string[] argv)
{
writeln("Hello D-World!");
return 0;
}
Is it possible to change the template into:
module main;
import std.stdio;
void main() {
}
You can change the templates in the VisualD installation folder:
C:\Program Files (x86)\VisualD\Templates\
I changed the file below and the new Console App Project template reflected the change.
C:\Program Files (x86)\VisualD\Templates\ProjectItems\ConsoleApp\main.d