Get input from the user (uses readln)
Part of TutorialFundamentals
Description
Shows how you can ask the user for input during runtime.
Example
import std.stdio;
void main()
{
writefln("What is your name?");
char[] name = readln();
writefln("Hello ", name);
}
