Get input from the user (uses stdin.readln)

Part of TutorialFundamentals

Description

Shows how you can ask the user for input during runtime.

Example

import std.stdio;

void main()
{
    writeln("What is your name?");

    string name;
    stdin.readln(name);

    writefln("Hello %s", name);
}