id: "d"
aliases:
- "dmd"
name: "D"
main: "main.d"
template: |
import std.stdio;
void main()
{
writeln("Hello, world!");
}
compile: |
dmd main.d
run: |
./main
format:
dfmt
input: |
void main() {