Daniel S
0
Q:

input in D

//this is how you take input in D language
import std.stdio;

void main()
{
    writef("Enter your name: ");
    char[] name;
    name = readln();
    writef("Hello ", name);
}
0

New to Communities?

Join the community