Programming in D, page 62 - Problems with reading characters
Brother Bill
brotherbill at mail.com
Sat Oct 18 14:45:15 UTC 2025
source/app.d is
```
import std.stdio;
void main() {
char letter;
write("Please enter a letter: ");
readf(" %s", &letter);
writeln("The letter that has been read: ", letter);
}
```
What are steps to type letter: ğ
in Fedora Linux using an American Keyboard?
Is there a document that indicates how to type many Unicode
characters as a series of keystrokes?
More information about the Digitalmars-d-learn
mailing list