= Get input from the user (uses readln) = ''Part of'' TutorialFundamentals == Description == Shows how you can ask the user for input during runtime. == Example == {{{ #!d import std.stdio; void main() { writeln("What is your name?"); string name; stdin.readln(name); writefln("Hello %s", name); } }}}