We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3352443 commit 431097cCopy full SHA for 431097c
examples/hello_unicode.d
@@ -4,6 +4,13 @@
4
*
5
* The functionality of this code is otherwise identical to hello_world.d
6
7
+ * Requirements for Unicode in ncurses:
8
+ * - You need to link against ncursesw instead of ncurses. If you don't have ncursesw, rebuild
9
+ * ncurses with --enable-widec (and file a bug with your distro where applicable).
10
+ * - You need to be using a Unicode locale. If your $LANG looks something like `en_US.utf8`,
11
+ * then you're in good shape. Keep in mind that users don't like when you force a locale; do
12
+ * it only if you think it's really necessary.
13
+ *
14
* Modified by: Wyatt
15
*/
16
import std.string: toStringz;
0 commit comments