On Friday, 19 November 2021 at 17:36:55 UTC, BoQsc wrote:
Let's say I want to write a simple program that asks for an input of a single character. After pressing a single key on a keyboard, the character is printed out and the program should stop.

module test;

void main()
{
    import core.stdc.stdio : getchar, puts, putchar;
    puts("Enter a character:");
    putchar(getchar());
}

Reply via email to